Home | History | Annotate | Download | only in 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                   xmlns:settings="http://schemas.android.com/apk/res-auto"
     19                   android:title="@string/application_info_label">
     20 
     21     <com.android.settings.applications.LayoutPreference
     22         android:key="header_view"
     23         android:layout="@layout/app_action_buttons"
     24         android:selectable="false" />
     25 
     26     <com.android.settings.applications.SpacePreference
     27         android:key="storage_space"
     28         android:layout_height="8dp" />
     29 
     30     <Preference
     31         android:key="storage_used"
     32         android:title="@string/storage_used"
     33         android:summary="@string/storage_type_internal"
     34         android:selectable="false"
     35         android:layout="@layout/horizontal_preference" />
     36 
     37     <com.android.settings.applications.LayoutPreference
     38         android:key="change_storage_button"
     39         android:selectable="false"
     40         android:layout="@layout/single_button_panel" />
     41 
     42     <PreferenceCategory
     43         android:key="storage_category"
     44         android:layout="@layout/tall_preference_category"
     45         android:title="@string/app_info_storage_title"
     46         settings:allowDividerAbove="false"
     47         settings:allowDividerBelow="false">
     48 
     49         <Preference
     50             android:key="app_size"
     51             android:title="@string/application_size_label"
     52             android:selectable="false"
     53             android:layout="@layout/horizontal_preference" />
     54 
     55         <Preference
     56             android:key="data_size"
     57             android:title="@string/data_size_label"
     58             android:selectable="false"
     59             android:layout="@layout/horizontal_preference" />
     60 
     61         <Preference
     62             android:key="cache_size"
     63             android:title="@string/cache_size_label"
     64             android:selectable="false"
     65             android:layout="@layout/horizontal_preference" />
     66 
     67         <Preference
     68             android:key="total_size"
     69             android:title="@string/total_size_label"
     70             android:selectable="false"
     71             android:layout="@layout/horizontal_preference" />
     72 
     73         <com.android.settings.applications.SpacePreference
     74             android:layout_height="8dp" />
     75 
     76     </PreferenceCategory>
     77 
     78     <PreferenceCategory
     79         android:key="uri_category"
     80         android:layout="@layout/headerless_preference_category"
     81         settings:allowDividerAbove="false"
     82         settings:allowDividerBelow="false">
     83         <com.android.settings.applications.LayoutPreference
     84             android:key="clear_uri_button"
     85             android:layout="@layout/single_button_panel"
     86             android:selectable="false" />
     87     </PreferenceCategory>
     88 
     89 </PreferenceScreen>
     90