You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
5.0 KiB
105 lines
5.0 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2015 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License
|
|
-->
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:custom="http://schemas.android.com/apk/res-auto"
|
|
android:title="@string/settings_app_name">
|
|
<PreferenceCategory
|
|
android:key="general_settings"
|
|
android:title="@string/header_category_general_settings"
|
|
android:order="2">
|
|
<Preference
|
|
android:icon="@drawable/ic_network"
|
|
android:key="network"
|
|
android:title="@string/connectivity_network_category_title"
|
|
android:fragment="com.android.tv.settings.connectivity.NetworkFragment" />
|
|
<Preference
|
|
android:icon="@drawable/ic_add_an_account"
|
|
android:key="accounts_and_sign_in"
|
|
android:title="@string/accounts_category_title"
|
|
android:fragment="com.android.tv.settings.accounts.AccountsFragment" />
|
|
<com.android.tv.twopanelsettings.slices.SlicePreference
|
|
android:icon="@drawable/ic_add_an_account"
|
|
android:key="accounts_and_sign_in_slice"
|
|
android:title="@string/accounts_category_title"
|
|
android:summary="@string/accounts_slice_summary"
|
|
android:fragment="com.android.tv.settings.accounts.AccountsSliceFragment"
|
|
custom:uri="@string/account_slice_uri"/>
|
|
<Preference
|
|
android:icon="@drawable/ic_volume_up"
|
|
android:key="sound"
|
|
android:title="@string/sound_category_title"
|
|
android:visible="false">
|
|
<intent android:action="com.android.tv.settings.SOUND" />
|
|
</Preference>
|
|
<Preference
|
|
android:icon="@drawable/ic_policy"
|
|
android:key="privacy"
|
|
android:title="@string/privacy_category_title"
|
|
android:summary="@string/privacy_category_summary"
|
|
android:fragment="com.android.tv.settings.privacy.PrivacyFragment"
|
|
custom:isPreferenceVisible="false" />
|
|
<Preference
|
|
android:icon="@drawable/ic_photo_size_select_actual"
|
|
android:key="display_and_sound"
|
|
android:title="@string/device_display_sound"
|
|
android:fragment="com.android.tv.settings.device.displaysound.DisplaySoundFragment"
|
|
custom:isPreferenceVisible="false" />
|
|
<Preference
|
|
android:icon="@drawable/ic_applications"
|
|
android:key="applications"
|
|
android:title="@string/applications_category_title"
|
|
android:fragment="com.android.tv.settings.device.apps.AppsFragment" />
|
|
<Preference
|
|
android:icon="@drawable/ic_device_prefs"
|
|
android:key="device_pref"
|
|
android:title="@string/device_pref_category_title"
|
|
android:fragment="com.android.tv.settings.device.DevicePrefFragment" />
|
|
<Preference
|
|
android:icon="@drawable/ic_remotes_and_accessories"
|
|
android:key="remotes_and_accessories"
|
|
android:title="@string/remotes_and_accessories_category_title"
|
|
android:fragment="com.android.tv.settings.accessories.AccessoriesFragment" >
|
|
<intent
|
|
android:targetClass="com.android.tv.settings.accessories.AddAccessoryActivity"
|
|
android:targetPackage="com.android.tv.settings"/>
|
|
</Preference>
|
|
<Preference
|
|
android:icon="@drawable/ic_remotes_and_accessories"
|
|
android:key="connected_devices"
|
|
android:title="@string/remotes_and_accessories_category_title"
|
|
android:visible="false">
|
|
<intent
|
|
android:action="com.android.tv.settings.CONNECTED_DEVICES" />
|
|
</Preference>
|
|
<com.android.tv.twopanelsettings.slices.SlicePreference
|
|
android:icon="@drawable/ic_remotes_and_accessories"
|
|
android:key="connected_devices_slice"
|
|
android:title="@string/remotes_and_accessories_category_title"
|
|
android:fragment="com.android.tv.twopanelsettings.slices.SliceFragment"
|
|
custom:isPreferenceVisible="false"
|
|
custom:uri="@string/connected_devices_slice_uri"/>
|
|
<Preference
|
|
android:icon="@drawable/ic_help_outline"
|
|
android:key="help_and_feedback"
|
|
android:title="@string/help_and_feedback_category_title"
|
|
android:fragment="com.android.tv.settings.help.HelpFragment"
|
|
custom:isPreferenceVisible="false">
|
|
</Preference>
|
|
</PreferenceCategory>
|
|
</PreferenceScreen>
|