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"
      4     android:layout_width="match_parent"
      5     android:layout_height="match_parent">
      6 
      7     <TextView
      8         android:text="@string/display_order_text"
      9         android:textAppearance="?android:attr/textAppearanceLarge"
     10         android:layout_width="match_parent"
     11         android:layout_height="wrap_content" />
     12 
     13     <Spinner
     14         android:id="@+id/typeSpinner"
     15         android:layout_width="match_parent"
     16         android:layout_height="wrap_content"
     17         android:entries="@array/usage_stats_display_order_types" />
     18 
     19     <LinearLayout
     20         android:orientation="horizontal"
     21         android:layout_width="match_parent"
     22         android:layout_height="wrap_content" > 
     23         <TextView
     24             android:text="@string/app_name_label"
     25             android:textAppearance="?android:attr/textAppearanceMedium"
     26             android:layout_width="wrap_content"
     27             android:paddingEnd="6dip"
     28             android:layout_height="wrap_content" />
     29         <TextView
     30             android:text="@string/last_time_used_label"
     31             android:paddingEnd="6dip"
     32             android:textAppearance="?android:attr/textAppearanceMedium"
     33             android:layout_width="wrap_content"
     34             android:layout_height="wrap_content" />
     35         <TextView
     36             android:text="@string/usage_time_label"
     37             android:textAppearance="?android:attr/textAppearanceMedium"
     38             android:layout_width="wrap_content"
     39             android:layout_height="wrap_content" />
     40     </LinearLayout>
     41     <ListView android:id="@+id/pkg_list"
     42         android:layout_width="match_parent"
     43         android:layout_height="match_parent"
     44         android:drawSelectorOnTop="false" />
     45 </LinearLayout>
     46