26 lines
1.0 KiB
XML
26 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="@color/bg_eeeeee"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:id="@+id/ll_error_onclick"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true">
|
|
<ImageView
|
|
android:layout_gravity="center_horizontal"
|
|
android:background="@drawable/ic_network_error"
|
|
android:layout_width="@dimen/dp180"
|
|
android:layout_height="@dimen/dp180"/>
|
|
<TextView
|
|
android:textSize="@dimen/dp20"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/dp10"
|
|
android:text="@string/loading_error"/>
|
|
</LinearLayout>
|
|
</RelativeLayout>
|