Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!--
      3   XML for a screen with a list view.
      4 -->
      5 
      6 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      7     android:layout_width="match_parent"
      8     android:layout_height="match_parent"
      9     android:orientation="vertical" >
     10 
     11     <TextView
     12       android:id="@+id/selection_pos"
     13       android:layout_width="match_parent"
     14       android:layout_height="wrap_content" >
     15     </TextView>
     16 
     17     <TextView
     18       android:id="@+id/selection_class"
     19       android:layout_width="match_parent"
     20       android:layout_height="wrap_content" >
     21     </TextView>
     22 
     23     <ListView
     24         android:id="@+id/list"
     25         android:layout_width="match_parent"
     26         android:layout_height="wrap_content" >
     27     </ListView>
     28 
     29 </LinearLayout>
     30