Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      3     android:orientation="vertical" android:layout_width="fill_parent"
      4     android:layout_height="fill_parent">
      5 
      6     <TextView android:paddingTop="25dip" android:paddingBottom="45dip"
      7         android:layout_width="wrap_content" android:layout_height="wrap_content"
      8         android:layout_gravity="center" android:text="@string/retry_message"
      9         android:textSize="18sp"
     10         android:textColor="?android:attr/textColorPrimary" />
     11 
     12     <Button android:id="@+id/retryButton" android:layout_width="wrap_content"
     13         android:layout_height="wrap_content" android:layout_gravity="center"
     14         android:text="@string/retry" android:textSize="25sp" />
     15 
     16 </LinearLayout>
     17