1<?xml version="1.0" encoding="utf-8"?>
2<!--
3    Copyright (C) 2018 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                  android:title="@string/device_pref_category_title">
20    <Preference
21        android:fragment="com.android.tv.settings.about.AboutFragment"
22        android:icon="@drawable/ic_info_outline"
23        android:key="about_device"
24        android:title="@string/about_preference"/>
25    <Preference
26        android:fragment="com.android.tv.settings.system.DateTimeFragment"
27        android:icon="@drawable/ic_access_time"
28        android:key="date_time"
29        android:title="@string/system_date_time"/>
30    <Preference
31        android:fragment="com.android.tv.settings.system.LanguageFragment"
32        android:icon="@drawable/ic_language"
33        android:key="language"
34        android:title="@string/system_language"/>
35    <Preference
36        android:fragment="com.android.tv.settings.inputmethod.KeyboardFragment"
37        android:icon="@drawable/ic_keyboard"
38        android:key="keyboard"
39        android:title="@string/system_keyboard"/>
40    <Preference
41        android:fragment="com.android.tv.settings.device.StorageSummaryFragment"
42        android:icon="@drawable/ic_storage"
43        android:key="storage"
44        android:title="@string/device_storage"/>
45    <Preference
46        android:icon="@drawable/ic_home"
47        android:key="home"
48        android:title="@string/system_home">
49        <intent android:action="com.google.android.tvlauncher.SETTINGS"/>
50    </Preference>
51    <Preference
52        android:fragment="com.android.tv.settings.device.display.daydream.DaydreamFragment"
53        android:icon="@drawable/ic_settings_system_daydream"
54        android:key="daydream"
55        android:title="@string/device_daydream"/>
56    <Preference
57        android:fragment="com.android.tv.settings.device.display.daydream.EnergySaverFragment"
58        android:icon="@drawable/ic_settings_energy_saver"
59        android:key="energysaver"
60        android:title="@string/device_energy_saver"/>
61    <Preference
62        android:fragment="com.android.tv.settings.system.development.DevelopmentFragment"
63        android:icon="@drawable/ic_developer_mode"
64        android:key="developer"
65        android:title="@string/system_developer_options"/>
66    <Preference
67        android:fragment="com.android.tv.settings.accessibility.AccessibilityFragment"
68        android:icon="@drawable/ic_accessibility_new"
69        android:key="accessibility"
70        android:title="@string/system_accessibility"/>
71    <com.android.tv.settings.LongClickPreference
72        android:icon="@drawable/ic_restart_alt"
73        android:key="reboot"
74        android:title="@string/restart_button_label"
75        android:fragment="com.android.tv.settings.about.RebootConfirmFragment" />
76</PreferenceScreen>
77