1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2019 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/storage_settings_title" 20 android:key="@string/psk_app_storage_settings_details"> 21 <com.android.car.settings.common.EntityHeaderPreference 22 android:key="@string/pk_storage_application_details" 23 settings:controller="com.android.car.settings.storage.StorageApplicationPreferenceController" 24 settings:searchable="false"/> 25 <com.android.car.settings.common.ActionButtonsPreference 26 android:key="@string/pk_storage_application_action_buttons" 27 settings:controller="com.android.car.settings.storage.StorageApplicationActionButtonsPreferenceController" 28 settings:searchable="false"/> 29 <com.android.car.settings.storage.StorageAppDetailPreference 30 android:key="@string/pk_storage_application_size" 31 android:selectable="false" 32 android:title="@string/storage_application_size_label" 33 settings:controller="com.android.car.settings.storage.StorageApplicationSizePreferenceController"/> 34 <com.android.car.settings.storage.StorageAppDetailPreference 35 android:key="@string/pk_storage_application_data_size" 36 android:selectable="false" 37 android:title="@string/storage_data_size_label" 38 settings:controller="com.android.car.settings.storage.StorageApplicationUserDataPreferenceController"/> 39 <com.android.car.settings.storage.StorageAppDetailPreference 40 android:key="@string/pk_storage_application_cache_size" 41 android:selectable="false" 42 android:title="@string/storage_cache_size_label" 43 settings:controller="com.android.car.settings.storage.StorageApplicationCacheSizePreferenceController"/> 44 <com.android.car.settings.storage.StorageAppDetailPreference 45 android:key="@string/pk_storage_application_total_size" 46 android:selectable="false" 47 android:title="@string/storage_total_size_label" 48 settings:controller="com.android.car.settings.storage.StorageApplicationTotalSizePreferenceController"/> 49</PreferenceScreen> 50