71 lines
2.8 KiB
XML
71 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2012 The CyanogenMod 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/profile_settings"
|
|
android:key="profile_settings"
|
|
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
|
|
|
|
<ListPreference
|
|
android:key="sound_mode"
|
|
android:title="@string/sound_mode"
|
|
android:summary="@string/sound_mode"
|
|
android:entries="@array/profile_entries"
|
|
android:persistent="false"
|
|
android:entryValues="@array/profile_values" />
|
|
|
|
<org.cyanogenmod.cmparts.profiles.ProfileRingtonePreference
|
|
android:key="soundtone"
|
|
android:title="@string/soundtone_title"
|
|
android:summary="@string/soundtone_summary"
|
|
android:dialogTitle="@string/soundtone_title"
|
|
android:persistent="false"
|
|
android:ringtoneType="notification" />
|
|
|
|
<ListPreference
|
|
android:key="ringer_mode"
|
|
android:title="@string/ringer_mode"
|
|
android:summary="@string/ringer_mode"
|
|
android:entries="@array/profile_entries"
|
|
android:persistent="false"
|
|
android:entryValues="@array/profile_values" />
|
|
|
|
<org.cyanogenmod.cmparts.profiles.ProfileRingtonePreference
|
|
android:key="ringtone"
|
|
android:title="@string/ringtone_title"
|
|
android:summary="@string/ringtone_summary"
|
|
android:dialogTitle="@string/ringtone_title"
|
|
android:persistent="false"
|
|
android:ringtoneType="ringtone" />
|
|
|
|
<ListPreference
|
|
android:key="vibrate_mode"
|
|
android:title="@string/vibrate_mode"
|
|
android:summary="@string/sound_mode"
|
|
android:entries="@array/profile_entries"
|
|
android:persistent="false"
|
|
android:entryValues="@array/profile_values" />
|
|
|
|
<ListPreference
|
|
android:key="lights_mode"
|
|
android:title="@string/lights_mode"
|
|
android:summary="@string/sound_mode"
|
|
android:entries="@array/profile_entries"
|
|
android:persistent="false"
|
|
android:entryValues="@array/profile_values" />
|
|
|
|
|
|
</PreferenceScreen>
|