Home | History | Annotate | Download | only in xml
      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     android:title="@string/settings_app_name">
     20     <PreferenceCategory
     21         android:key="device"
     22         android:title="@string/header_category_device">
     23         <Preference
     24             android:icon="@drawable/ic_wifi_signal_4_white"
     25             android:key="network"
     26             android:title="@string/connectivity_network"
     27             android:fragment="com.android.tv.settings.connectivity.NetworkFragment" />
     28         <Preference
     29             android:icon="@drawable/ic_info_outline"
     30             android:key="about_device"
     31             android:title="@string/about_preference"
     32             android:fragment="com.android.tv.settings.about.AboutFragment" />
     33     </PreferenceCategory>
     34 
     35     <PreferenceCategory
     36         android:key="preferences"
     37         android:title="@string/header_category_preferences">
     38         <Preference
     39             android:icon="@drawable/ic_mic"
     40             android:key="speech"
     41             android:title="@string/system_speech" >
     42             <intent android:action="com.google.android.katniss.setting.SPEECH" />
     43         </Preference>
     44         <Preference
     45             android:icon="@drawable/ic_accessibility_new"
     46             android:key="accessibility"
     47             android:title="@string/system_accessibility"
     48             android:fragment="com.android.tv.settings.system.AccessibilityFragment" />
     49     </PreferenceCategory>
     50 
     51     <PreferenceCategory
     52         android:key="accessories"
     53         android:title="@string/header_category_accessories">
     54         <Preference
     55             android:icon="@drawable/ic_bluetooth"
     56             android:key="add_accessory"
     57             android:title="@string/accessories_add">
     58             <intent
     59                 android:targetClass="com.android.tv.settings.accessories.AddAccessoryActivity"
     60                 android:targetPackage="com.android.tv.settings" />
     61         </Preference>
     62     </PreferenceCategory>
     63     <PreferenceCategory
     64         android:key="personal"
     65         android:title="@string/header_category_personal">
     66         <Preference
     67             android:icon="@drawable/ic_location_on"
     68             android:key="location"
     69             android:title="@string/system_location"
     70             android:fragment="com.android.tv.settings.system.LocationFragment" />
     71         <Preference
     72             android:icon="@drawable/ic_lock"
     73             android:key="security"
     74             android:title="@string/system_security"
     75             android:fragment="com.android.tv.settings.system.SecurityFragment" />
     76     </PreferenceCategory>
     77 </PreferenceScreen>
     78