The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | android:orientation="vertical" |
Romain Guy | 3378715 | 2010-01-08 15:07:10 -0800 | [diff] [blame] | 4 | android:layout_width="match_parent" |
| 5 | android:layout_height="match_parent"> |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 6 | |
| 7 | <TextView |
| 8 | android:text="@string/display_order_text" |
| 9 | android:textAppearance="?android:attr/textAppearanceLarge" |
Romain Guy | 3378715 | 2010-01-08 15:07:10 -0800 | [diff] [blame] | 10 | android:layout_width="match_parent" |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 11 | android:layout_height="wrap_content" /> |
| 12 | |
| 13 | <Spinner |
| 14 | android:id="@+id/typeSpinner" |
Romain Guy | 3378715 | 2010-01-08 15:07:10 -0800 | [diff] [blame] | 15 | android:layout_width="match_parent" |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 16 | android:layout_height="wrap_content" |
| 17 | android:entries="@array/usage_stats_display_order_types" /> |
| 18 | |
| 19 | <LinearLayout |
| 20 | android:orientation="horizontal" |
Romain Guy | 3378715 | 2010-01-08 15:07:10 -0800 | [diff] [blame] | 21 | android:layout_width="match_parent" |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 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" |
Fabrice Di Meglio | 79d8e80 | 2012-07-19 19:25:50 -0700 | [diff] [blame] | 27 | android:paddingEnd="6dip" |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 28 | android:layout_height="wrap_content" /> |
| 29 | <TextView |
Adam Lesinski | 8d7be7b | 2014-07-17 18:30:03 -0700 | [diff] [blame] | 30 | android:text="@string/last_time_used_label" |
Fabrice Di Meglio | 79d8e80 | 2012-07-19 19:25:50 -0700 | [diff] [blame] | 31 | android:paddingEnd="6dip" |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 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" |
Romain Guy | 3378715 | 2010-01-08 15:07:10 -0800 | [diff] [blame] | 42 | android:layout_width="match_parent" |
| 43 | android:layout_height="match_parent" |
The Android Open Source Project | afc4ab2 | 2009-03-03 19:32:34 -0800 | [diff] [blame] | 44 | android:drawSelectorOnTop="false" /> |
| 45 | </LinearLayout> |