| 123456789101112131415161718192021222324252627282930313233 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <TextView
- android:id="@+id/textViewMessage"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:layout_marginTop="16dp"
- android:drawableTop="@drawable/ic_error"
- android:gravity="center_horizontal"
- android:text="@string/error_message"
- android:textAppearance="?android:attr/textAppearanceMedium"
- android:textColor="@color/gray_light" />
- <Button
- android:id="@+id/buttonError"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_horizontal"
- android:layout_below="@+id/textViewMessage"
- android:layout_centerHorizontal="true"
- android:text="@string/error_button"
- android:layout_marginTop="16dp" />
- </RelativeLayout>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"/>
- </RelativeLayout>
|