24 lines
972 B
XML
24 lines
972 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/rl_load_failed_layout"
|
|
android:background="#88000000"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<ImageView
|
|
android:id="@+id/im_error_icon"
|
|
android:background="@drawable/community_bg_content"
|
|
android:layout_width="@dimen/dp200"
|
|
android:layout_height="@dimen/dp200"
|
|
android:layout_centerInParent="true"/>
|
|
<TextView
|
|
android:textSize="@dimen/dp23"
|
|
android:textColor="@color/tab_text_color"
|
|
android:id="@+id/tv_load_failed_hint"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp20"
|
|
android:text="@string/video_failed"
|
|
android:layout_below="@+id/im_error_icon"
|
|
android:layout_centerHorizontal="true"/>
|
|
</RelativeLayout>
|