1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  Copyright (C) 2015 The Android Open Source Project
4
5  Licensed under the Apache License, Version 2.0 (the "License");
6  you may not use this file except in compliance with the License.
7  You may obtain a copy of the License at
8
9       http://www.apache.org/licenses/LICENSE-2.0
10
11  Unless required by applicable law or agreed to in writing, software
12  distributed under the License is distributed on an "AS IS" BASIS,
13  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  See the License for the specific language governing permissions and
15  limitations under the License
16  -->
17
18<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
19    <Preference
20        android:key="migrate"
21        android:title="@string/storage_migrate" />
22    <Preference
23        android:key="eject"
24        android:title="@string/storage_eject" />
25    <Preference
26        android:key="erase"
27        android:title="@string/storage_format" />
28
29    <com.android.tv.settings.device.storage.StoragePreference
30        android:key="apps_usage"
31        android:title="@string/storage_apps_usage"
32        android:icon="@drawable/storage_indicator_apps" />
33    <com.android.tv.settings.device.storage.StoragePreference
34        android:key="dcim_usage"
35        android:title="@string/storage_dcim_usage"
36        android:icon="@drawable/storage_indicator_dcim" />
37    <com.android.tv.settings.device.storage.StoragePreference
38        android:key="music_usage"
39        android:title="@string/storage_music_usage"
40        android:icon="@drawable/storage_indicator_music" />
41    <com.android.tv.settings.device.storage.StoragePreference
42        android:key="downloads_usage"
43        android:title="@string/storage_downloads_usage"
44        android:icon="@drawable/storage_indicator_downloads" />
45    <com.android.tv.settings.device.storage.StoragePreference
46        android:key="cache_usage"
47        android:title="@string/storage_media_cache_usage"
48        android:icon="@drawable/storage_indicator_cache" />
49    <com.android.tv.settings.device.storage.StoragePreference
50        android:key="misc_usage"
51        android:title="@string/storage_media_misc_usage"
52        android:icon="@drawable/storage_indicator_misc" />
53    <com.android.tv.settings.device.storage.StoragePreference
54        android:key="available"
55        android:title="@string/storage_available"
56        android:icon="@drawable/storage_indicator_available" />
57</PreferenceScreen>
58