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:title="@string/brightness"
     23                 android:persistent="false"/>
     24 
     25         <PreferenceScreen
     26                 android:key="wallpaper"
     27                 android:title="@string/wallpaper_settings_title"
     28                 android:fragment="com.android.settings.WallpaperTypeSettings" />
     29 
     30         <CheckBoxPreference
     31             android:key="accelerometer"
     32             android:title="@string/accelerometer_title"/>
     33 
     34         <ListPreference
     35                 android:key="screen_timeout"
     36                 android:title="@string/screen_timeout"
     37                 android:summary="@string/screen_timeout_summary"
     38                 android:persistent="false"
     39                 android:entries="@array/screen_timeout_entries"
     40                 android:entryValues="@array/screen_timeout_values" />
     41 
     42         <PreferenceScreen
     43                 android:key="screensaver"
     44                 android:title="@string/screensaver_settings_title"
     45                 android:fragment="com.android.settings.DreamSettings" />
     46 
     47         <com.android.settings.WarnedListPreference
     48                 android:key="font_size"
     49                 android:title="@string/title_font_size"
     50                 android:summary="@string/summary_font_size"
     51                 android:entries="@array/entries_font_size"
     52                 android:entryValues="@array/entryvalues_font_size"
     53                 android:dialogTitle="@string/dialog_title_font_size" />
     54 
     55         <CheckBoxPreference
     56             android:key="notification_pulse"
     57             android:title="@string/notification_pulse_title"
     58             android:persistent="false" />
     59 
     60         <PreferenceScreen
     61                 android:key="wifi_display"
     62                 android:title="@string/wifi_display_settings_title"
     63                 android:fragment="com.android.settings.wfd.WifiDisplaySettings" />
     64 
     65 </PreferenceScreen>
     66