Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 
      3 <LinearLayout
      4         xmlns:android="http://schemas.android.com/apk/res/android"
      5         android:orientation="vertical"
      6         android:layout_width="match_parent"
      7         android:layout_height="match_parent">
      8     <ImageView
      9             android:id="@+id/imageview"
     10             android:layout_width="match_parent"
     11             android:layout_height="300dp" />
     12     <LinearLayout
     13             android:orientation="horizontal"
     14             android:layout_width="wrap_content"
     15             android:layout_height="wrap_content">
     16         <Button
     17                 android:id="@+id/start"
     18                 android:text="@string/start"
     19                 android:layout_width="wrap_content"
     20                 android:layout_height="wrap_content"/>
     21         <Button
     22                 android:id="@+id/stop"
     23                 android:text="@string/stop"
     24                 android:layout_width="wrap_content"
     25                 android:layout_height="wrap_content"/>
     26         <Button
     27                 android:id="@+id/vis"
     28                 android:text="@string/vis"
     29                 android:layout_width="wrap_content"
     30                 android:layout_height="wrap_content"/>
     31         <Button
     32                 android:id="@+id/invis"
     33                 android:text="@string/invis"
     34                 android:layout_width="wrap_content"
     35                 android:layout_height="wrap_content"/>
     36     </LinearLayout>
     37 
     38 </LinearLayout>