OSDN Git Service

am 66b5a58a: Merge "Fix init order so we have something to measure." into mnc-dev
[android-x86/packages-apps-Settings.git] / res / xml / app_storage_settings.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright (C) 2015 The Android Open Source Project
3
4      Licensed under the Apache License, Version 2.0 (the "License");
5      you may not use this file except in compliance with the License.
6      You may obtain a copy of the License at
7
8           http://www.apache.org/licenses/LICENSE-2.0
9
10      Unless required by applicable law or agreed to in writing, software
11      distributed under the License is distributed on an "AS IS" BASIS,
12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13      See the License for the specific language governing permissions and
14      limitations under the License.
15 -->
16
17 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
18                   android:title="@string/application_info_label">
19
20     <com.android.settings.DropDownPreference
21         android:key="app_location_setting"
22         android:title="@string/storage_used"
23         android:summary="@string/storage_type_internal"
24         android:selectable="true" />
25
26     <PreferenceCategory
27         android:key="storage_category"
28         android:layout="@layout/tall_preference_category"
29         android:title="@string/storage_label">
30
31         <Preference
32             android:key="total_size"
33             android:title="@string/total_size_label"
34             android:selectable="false"
35             android:layout="@layout/horizontal_preference" />
36
37         <Preference
38             android:key="app_size"
39             android:title="@string/application_size_label"
40             android:selectable="false"
41             android:layout="@layout/horizontal_preference" />
42
43         <Preference
44             android:key="external_code_size"
45             android:title="@string/external_code_size_label"
46             android:selectable="false"
47             android:layout="@layout/horizontal_preference" />
48
49         <Preference
50             android:key="data_size"
51             android:title="@string/data_size_label"
52             android:selectable="false"
53             android:layout="@layout/horizontal_preference" />
54
55         <Preference
56             android:key="external_data_size"
57             android:title="@string/external_data_size_label"
58             android:selectable="false"
59             android:layout="@layout/horizontal_preference" />
60
61         <com.android.settings.applications.LayoutPreference
62             android:key="clear_data_button"
63             android:layout="@layout/single_button_panel" />
64     </PreferenceCategory>
65
66     <com.android.settings.applications.SpacePreference
67         android:layout_height="8dp" />
68
69     <Preference
70         android:key="cache_size"
71         android:title="@string/cache_size_label"
72         android:selectable="false"
73         android:layout="@layout/horizontal_preference" />
74
75     <com.android.settings.applications.LayoutPreference
76         android:key="clear_cache_button"
77         android:selectable="false"
78         android:layout="@layout/single_button_panel" />
79
80 </PreferenceScreen>