blob: 013bcdb07a5bd465f4830f448669ee266745bb92 [file] [log] [blame]
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08001<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:orientation="vertical"
Romain Guy33787152010-01-08 15:07:10 -08004 android:layout_width="match_parent"
5 android:layout_height="match_parent">
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -08006
7 <TextView
8 android:text="@string/display_order_text"
9 android:textAppearance="?android:attr/textAppearanceLarge"
Romain Guy33787152010-01-08 15:07:10 -080010 android:layout_width="match_parent"
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080011 android:layout_height="wrap_content" />
12
13 <Spinner
14 android:id="@+id/typeSpinner"
Romain Guy33787152010-01-08 15:07:10 -080015 android:layout_width="match_parent"
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080016 android:layout_height="wrap_content"
17 android:entries="@array/usage_stats_display_order_types" />
18
19 <LinearLayout
20 android:orientation="horizontal"
Romain Guy33787152010-01-08 15:07:10 -080021 android:layout_width="match_parent"
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080022 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 Meglio79d8e802012-07-19 19:25:50 -070027 android:paddingEnd="6dip"
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080028 android:layout_height="wrap_content" />
29 <TextView
Adam Lesinski8d7be7b2014-07-17 18:30:03 -070030 android:text="@string/last_time_used_label"
Fabrice Di Meglio79d8e802012-07-19 19:25:50 -070031 android:paddingEnd="6dip"
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080032 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 Guy33787152010-01-08 15:07:10 -080042 android:layout_width="match_parent"
43 android:layout_height="match_parent"
The Android Open Source Projectafc4ab22009-03-03 19:32:34 -080044 android:drawSelectorOnTop="false" />
45</LinearLayout>