| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?xml version="1.0" encoding="utf-8"?>
- <!-- Copyright (C) 2009 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/settings">
- <CheckBoxPreference
- android:key="alarm_in_silent_mode"
- android:title="@string/alarm_in_silent_mode_title"
- android:summary="@string/alarm_in_silent_mode_summary" />
- <VolumePreference
- android:title="@string/alarm_volume_title"
- android:summary="@string/alarm_volume_summary"
- android:dialogTitle="@string/alarm_volume_title"
- android:persistent="false"
- android:streamType="alarm" />
- <ListPreference
- android:key="snooze_duration"
- android:title="@string/snooze_duration_title"
- android:entries="@array/snooze_duration_entries"
- android:entryValues="@array/snooze_duration_values"
- android:defaultValue="10"
- android:dialogTitle="@string/snooze_duration_title" />
- <!-- <ListPreference
- android:key="volume_button_setting"
- android:title="@string/volume_button_setting_title"
- android:dialogTitle="@string/volume_button_dialog_title"
- android:entries="@array/volume_button_setting_entries"
- android:entryValues="@array/volume_button_setting_values"
- android:summary="@string/volume_button_setting_summary"
- android:defaultValue="2" />
- -->
- </PreferenceScreen>
|