39 lines
1.6 KiB
XML
39 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/fl_load_view"
|
|
android:background="@color/bg_FAFAFC"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<RelativeLayout
|
|
android:orientation="vertical"
|
|
android:id="@+id/rl_re"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true">
|
|
<ImageView
|
|
android:id="@+id/im_loading"
|
|
android:background="@drawable/ic_loading"
|
|
android:layout_width="@dimen/dp95"
|
|
android:layout_height="@dimen/dp95"
|
|
android:layout_centerInParent="true"
|
|
android:layout_centerHorizontal="true"/>
|
|
<ImageView
|
|
android:id="@+id/im_load_state"
|
|
android:background="@drawable/ic_network_error"
|
|
android:visibility="invisible"
|
|
android:layout_width="@dimen/dp180"
|
|
android:layout_height="@dimen/dp180"
|
|
android:layout_centerHorizontal="true"/>
|
|
<TextView
|
|
android:textSize="@dimen/dp30"
|
|
android:textColor="@color/bg_92A7B6"
|
|
android:id="@+id/tv_load_state_des"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp30"
|
|
android:text="@string/video_network_error"
|
|
android:layout_below="@+id/im_load_state"
|
|
android:layout_centerHorizontal="true"/>
|
|
</RelativeLayout>
|
|
</RelativeLayout>
|