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.LanguageFragment"
27        android:icon="@drawable/ic_language"
28        android:key="language"
29        android:title="@string/system_language"/>
30    <Preference
31        android:fragment="com.android.tv.settings.system.DateTimeFragment"
32        android:icon="@drawable/ic_access_time"
33        android:key="date_time"
34        android:title="@string/system_date_time"/>
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:icon="@drawable/ic_home"
42        android:key="home"
43        android:title="@string/system_home">
44        <intent android:action="com.google.android.tvlauncher.SETTINGS"/>
45    </Preference>
46    <Preference
47        android:key="google_settings"
48        android:title="@string/system_google">
49        <intent
50            android:action="com.google.assistant.GOOGLE_SETTINGS"/>
51    </Preference>
52    <Preference
53        android:fragment="com.android.tv.settings.accessibility.AccessibilityFragment"
54        android:icon="@drawable/ic_accessibility_new"
55        android:key="accessibility"
56        android:title="@string/system_accessibility"/>
57    <Preference
58        android:fragment="com.android.tv.settings.system.LocationFragment"
59        android:icon="@drawable/ic_location_on"
60        android:key="location"
61        android:title="@string/system_location"/>
62    <Preference
63        android:fragment="com.android.tv.settings.system.SecurityFragment"
64        android:icon="@drawable/ic_lock"
65        android:key="security"
66        android:title="@string/system_security"/>
67</PreferenceScreen>
68