1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2017 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<!-- Layout for the storage breakdown for a profile of the primary user. --> 18<PreferenceScreen 19 xmlns:android="http://schemas.android.com/apk/res/android" 20 android:title="@string/storage_settings"> 21 <com.android.settings.deviceinfo.StorageItemPreference 22 android:key="pref_photos_videos" 23 android:title="@string/storage_photos_videos" 24 android:icon="@drawable/ic_photo_library" 25 android:order="2" /> 26 <com.android.settings.deviceinfo.StorageItemPreference 27 android:key="pref_music_audio" 28 android:title="@string/storage_music_audio" 29 android:icon="@drawable/ic_media_stream" 30 android:order="3" /> 31 <com.android.settings.deviceinfo.StorageItemPreference 32 android:key="pref_games" 33 android:title="@string/storage_games" 34 android:icon="@drawable/ic_videogame_vd_theme_24" 35 android:order="4" /> 36 <com.android.settings.deviceinfo.StorageItemPreference 37 android:key="pref_movies" 38 android:title="@string/storage_movies_tv" 39 android:icon="@drawable/ic_local_movies" 40 android:order="5" 41 /> 42 <com.android.settings.deviceinfo.StorageItemPreference 43 android:key="pref_other_apps" 44 android:title="@string/storage_other_apps" 45 android:icon="@drawable/ic_storage_apps" 46 android:order="6" /> 47 <com.android.settings.deviceinfo.StorageItemPreference 48 android:key="pref_files" 49 android:title="@string/storage_files" 50 android:icon="@drawable/ic_folder_vd_theme_24" 51 android:order="7" /> 52</PreferenceScreen> 53