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:layout_width="fill_parent"
      4     android:layout_height="fill_parent"
      5     android:orientation="vertical"
      6     android:padding="20dip" >
      7     <LinearLayout
      8         android:layout_width="fill_parent"
      9         android:layout_height="wrap_content"
     10         android:gravity="center_horizontal"
     11         android:orientation="horizontal" >
     12         <Button
     13             android:id="@+id/show"
     14             android:layout_width="wrap_content"
     15             android:layout_height="wrap_content"
     16             android:layout_marginRight="10dp"
     17             android:text="@string/text_show" />
     18         <Button
     19             android:id="@+id/hide"
     20             android:layout_width="wrap_content"
     21             android:layout_height="wrap_content"
     22             android:text="@string/text_hide" />
     23     </LinearLayout>
     24     <TextView
     25         android:id="@+id/textActionBarResult"
     26         android:layout_width="fill_parent"
     27         android:layout_height="wrap_content"
     28         android:layout_marginTop="20dp"
     29         android:gravity="center"
     30         android:text="@string/text_empty"
     31         android:textAppearance="?android:attr/textAppearanceSmall" />
     32 </LinearLayout>