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.applications.SpacePreference 21 android:key="storage_space" 22 android:layout_height="8dp" /> 23 24 <Preference 25 android:key="storage_used" 26 android:title="@string/storage_used" 27 android:summary="@string/storage_type_internal" 28 android:selectable="false" 29 android:layout="@layout/horizontal_preference" /> 30 31 <com.android.settings.applications.LayoutPreference 32 android:key="change_storage_button" 33 android:layout="@layout/single_button_panel" /> 34 35 <PreferenceCategory 36 android:key="storage_category" 37 android:layout="@layout/tall_preference_category" 38 android:title="@string/storage_label"> 39 40 <Preference 41 android:key="total_size" 42 android:title="@string/total_size_label" 43 android:selectable="false" 44 android:layout="@layout/horizontal_preference" /> 45 46 <Preference 47 android:key="app_size" 48 android:title="@string/application_size_label" 49 android:selectable="false" 50 android:layout="@layout/horizontal_preference" /> 51 52 <Preference 53 android:key="external_code_size" 54 android:title="@string/external_code_size_label" 55 android:selectable="false" 56 android:layout="@layout/horizontal_preference" /> 57 58 <Preference 59 android:key="data_size" 60 android:title="@string/data_size_label" 61 android:selectable="false" 62 android:layout="@layout/horizontal_preference" /> 63 64 <Preference 65 android:key="external_data_size" 66 android:title="@string/external_data_size_label" 67 android:selectable="false" 68 android:layout="@layout/horizontal_preference" /> 69 70 <com.android.settings.applications.LayoutPreference 71 android:key="clear_data_button" 72 android:layout="@layout/single_button_panel" /> 73 </PreferenceCategory> 74 75 <com.android.settings.applications.SpacePreference 76 android:layout_height="8dp" /> 77 78 <Preference 79 android:key="cache_size" 80 android:title="@string/cache_size_label" 81 android:selectable="false" 82 android:layout="@layout/horizontal_preference" /> 83 84 <com.android.settings.applications.LayoutPreference 85 android:key="clear_cache_button" 86 android:selectable="false" 87 android:layout="@layout/single_button_panel" /> 88 89 <com.android.settings.applications.SpacePreference 90 android:layout_height="8dp" /> 91 92 <PreferenceCategory 93 android:key="uri_category" 94 android:layout="@layout/headerless_preference_category" > 95 <com.android.settings.applications.LayoutPreference 96 android:key="clear_uri_button" 97 android:layout="@layout/single_button_panel" 98 android:selectable="false" /> 99 </PreferenceCategory> 100 101 </PreferenceScreen> 102