1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2014 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 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" > 17 18 <Preference 19 android:icon="@drawable/ic_settings_wifi_4" 20 android:key="network" 21 android:title="@string/connectivity_network" > 22 <intent 23 android:targetClass="com.android.tv.settings.connectivity.NetworkActivity" 24 android:targetPackage="com.android.tv.settings" /> 25 </Preference> 26 <Preference 27 android:icon="@drawable/ic_settings_cast" 28 android:key="cast" 29 android:title="@string/system_cast" > 30 <intent android:action="com.google.android.settings.CAST_RECEIVER_SETTINGS" /> 31 </Preference> 32 <Preference 33 android:icon="@drawable/ic_settings_sound_on" 34 android:key="sound_effects" 35 android:title="@string/device_sound_effects" > 36 <intent 37 android:targetClass="com.android.tv.settings.device.sound.SoundActivity" 38 android:targetPackage="com.android.tv.settings" /> 39 </Preference> 40 <Preference 41 android:icon="@drawable/ic_settings_apps" 42 android:key="apps" 43 android:title="@string/device_apps" > 44 <intent 45 android:targetClass="com.android.tv.settings.device.apps.AppsActivity" 46 android:targetPackage="com.android.tv.settings" /> 47 </Preference> 48 <Preference 49 android:icon="@drawable/ic_settings_daydream" 50 android:key="daydream" 51 android:title="@string/device_daydream" > 52 <intent 53 android:targetClass="com.android.tv.settings.device.display.daydream.DaydreamActivity" 54 android:targetPackage="com.android.tv.settings" /> 55 </Preference> 56 <Preference 57 android:icon="@drawable/ic_settings_storage" 58 android:key="storagereset" 59 android:title="@string/device_storage_reset" > 60 <intent 61 android:targetClass="com.android.tv.settings.device.StorageResetActivity" 62 android:targetPackage="com.android.tv.settings" /> 63 </Preference> 64 <Preference 65 android:icon="@drawable/ic_settings_about" 66 android:key="about_device" 67 android:title="@string/about_preference"> 68 <intent 69 android:targetClass="com.android.tv.settings.about.AboutActivity" 70 android:targetPackage="com.android.tv.settings" /> 71 </Preference> 72 </PreferenceScreen> 73