Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <RelativeLayout
      3       xmlns:android="http://schemas.android.com/apk/res/android"
      4       android:layout_width="fill_parent"
      5       android:layout_height="fill_parent" >
      6 
      7     <com.android.tools.sdkcontroller.views.MultiTouchView
      8          android:id="@+id/imageView"
      9          android:layout_width="fill_parent"
     10          android:layout_height="fill_parent" />
     11 
     12     <!-- Placeholder status text. Becomes visibility=gone when empty. -->
     13     <TextView
     14         android:id="@+id/textStatus"
     15         android:layout_width="fill_parent"
     16         android:layout_height="wrap_content"
     17         android:layout_alignParentTop="true"
     18         android:textAppearance="?android:attr/textAppearanceSmall" />
     19 
     20     <!-- Placeholder error text. Becomes visibility=gone when empty. -->
     21     <TextView
     22         android:id="@+id/textError"
     23         android:layout_width="fill_parent"
     24         android:layout_height="wrap_content"
     25         android:layout_below="@+id/textStatus"
     26         android:gravity="center_horizontal"
     27         android:background="#F00F"
     28         android:padding="8dp"
     29         android:textAppearance="?android:attr/textAppearanceSmall"
     30         android:textColor="#FFF0" />
     31 
     32 </RelativeLayout>
     33