Home | History | Annotate | Download | only in xml
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2010 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 
     17 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
     18         android:title="@string/display_settings"
     19         xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
     20 
     21         <com.android.settings.BrightnessPreference
     22                 android:key="brightness"
     23                 android:title="@string/brightness"
     24                 android:dialogTitle="@string/brightness" />
     25 
     26         <PreferenceScreen
     27                 android:key="wallpaper"
     28                 android:title="@string/wallpaper_settings_title"
     29                 android:fragment="com.android.settings.WallpaperTypeSettings" />
     30 
     31         <CheckBoxPreference
     32             android:key="accelerometer"
     33             android:title="@string/accelerometer_title"/>
     34 
     35         <ListPreference
     36                 android:key="screen_timeout"
     37                 android:title="@string/screen_timeout"
     38                 android:summary="@string/screen_timeout_summary"
     39                 android:persistent="false"
     40                 android:entries="@array/screen_timeout_entries"
     41                 android:entryValues="@array/screen_timeout_values" />
     42 
     43         <PreferenceScreen
     44                 android:key="screensaver"
     45                 android:title="@string/screensaver_settings_title"
     46                 android:fragment="com.android.settings.DreamSettings" />
     47 
     48         <com.android.settings.WarnedListPreference
     49                 android:key="font_size"
     50                 android:title="@string/title_font_size"
     51                 android:summary="@string/summary_font_size"
     52                 android:entries="@array/entries_font_size"
     53                 android:entryValues="@array/entryvalues_font_size"
     54                 android:dialogTitle="@string/dialog_title_font_size" />
     55 
     56         <CheckBoxPreference
     57             android:key="notification_pulse"
     58             android:title="@string/notification_pulse_title"
     59             android:persistent="false" />
     60 
     61         <PreferenceScreen
     62                 android:key="wifi_display"
     63                 android:title="@string/wifi_display_settings_title"
     64                 android:fragment="com.android.settings.wfd.WifiDisplaySettings" />
     65 
     66 </PreferenceScreen>
     67