| <?xml version="1.0" encoding="utf-8"?> |
| <!-- Copyright (C) 2010 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" |
| android:title="@string/display_settings" |
| xmlns:settings="http://schemas.android.com/apk/res/com.android.settings"> |
| |
| <com.android.settings.BrightnessPreference |
| android:key="brightness" |
| android:title="@string/brightness" |
| android:dialogTitle="@string/brightness" /> |
| |
| <PreferenceScreen |
| android:key="wallpaper" |
| android:title="@string/wallpaper_settings_title" |
| android:fragment="com.android.settings.WallpaperTypeSettings" /> |
| |
| <CheckBoxPreference |
| android:key="accelerometer" |
| android:title="@string/accelerometer_title"/> |
| |
| <ListPreference |
| android:key="screen_timeout" |
| android:title="@string/screen_timeout" |
| android:summary="@string/screen_timeout_summary" |
| android:persistent="false" |
| android:entries="@array/screen_timeout_entries" |
| android:entryValues="@array/screen_timeout_values" /> |
| |
| <ListPreference |
| android:key="font_size" |
| android:title="@string/title_font_size" |
| android:summary="@string/summary_font_size" |
| android:entries="@array/entries_font_size" |
| android:entryValues="@array/entryvalues_font_size" |
| android:dialogTitle="@string/dialog_title_font_size" /> |
| |
| <CheckBoxPreference |
| android:key="notification_pulse" |
| android:title="@string/notification_pulse_title" |
| android:persistent="false" /> |
| |
| <PreferenceCategory android:title="@string/xenonhd_extras_title"/> |
| |
| <!-- NavigationBar Customization --> |
| <PreferenceScreen |
| android:key="navigation_bar" |
| android:fragment="com.android.settings.th.NavBar" |
| android:title="@string/navigation_bar_title" |
| android:summary="@string/navigation_bar_summary" /> |
| |
| <!-- Lockscreen Targets --> |
| <Preference android:key="lockscreen_targets" |
| android:title="@string/lockscreen_target_title" |
| android:summary="@string/lockscreen_target_summary" |
| android:fragment="com.android.settings.th.LockscreenTargets" /> |
| |
| <!-- Battery Percentage --> |
| <CheckBoxPreference |
| android:key="battery_percentage" |
| android:title="@string/title_battery_percentage" |
| android:defaultValue="false" /> |
| |
| <!-- Volume rocker wake --> |
| <CheckBoxPreference |
| android:key="pref_volume_wake" |
| android:title="@string/pref_volume_wake_title" |
| android:summary="@string/pref_volume_wake_summary" |
| android:defaultValue="false" /> |
| |
| <!-- Volume rocker music control --> |
| <CheckBoxPreference |
| android:key="volbtn_music_controls" |
| android:title="@string/volbtn_music_controls_title" |
| android:summary="@string/volbtn_music_controls_summary" |
| android:persistent="false" /> |
| |
| </PreferenceScreen> |