diff options
Diffstat (limited to 'res/xml')
-rw-r--r-- | res/xml/prefs.xml | 72 |
1 files changed, 69 insertions, 3 deletions
diff --git a/res/xml/prefs.xml b/res/xml/prefs.xml index 7a1b07b..fddc692 100644 --- a/res/xml/prefs.xml +++ b/res/xml/prefs.xml @@ -85,7 +85,51 @@ android:defaultValue="false" android:key="service_no_background" /> - + + <ListPreference + android:title="@string/pref_service_orientation_title" + android:summaryOn="@string/pref_service_orientation_summary" + android:entries="@array/orientationNames" + android:entryValues="@array/orientationValues" + android:defaultValue="save_adjust" + android:key="service_orientation" + /> + + <PreferenceScreen + android:title="@string/pref_category_custom_keys_title" + android:summary="@string/pref_category_custom_keys_summary"> + + <ListPreference + android:title="@string/pref_custom_key1" + android:key="service_extra_custom_keyid1" + /> + + <ListPreference + android:title="@string/pref_custom_key2" + android:key="service_extra_custom_keyid2" + /> + + <ListPreference + android:title="@string/pref_custom_key3" + android:key="service_extra_custom_keyid3" + /> + + <ListPreference + android:title="@string/pref_custom_key4" + android:key="service_extra_custom_keyid4" + /> + + <ListPreference + android:title="@string/pref_custom_key5" + android:key="service_extra_custom_keyid5" + /> + + <ListPreference + android:title="@string/pref_custom_key6" + android:key="service_extra_custom_keyid6" + /> + + </PreferenceScreen> </PreferenceScreen> <PreferenceScreen @@ -189,8 +233,30 @@ android:key="choosebutton" /> - - + <CheckBoxPreference + android:title="@string/pref_volume_up_title" + android:summaryOn="@string/pref_volume_up_summary_on" + android:summaryOff="@string/pref_volume_up_summary_off" + android:defaultValue="false" + android:key="show_volume_up" + /> + + <CheckBoxPreference + android:title="@string/pref_volume_down_title" + android:summaryOn="@string/pref_volume_down_summary_on" + android:summaryOff="@string/pref_volume_down_summary_off" + android:defaultValue="false" + android:key="show_volume_down" + /> + + <CheckBoxPreference + android:title="@string/pref_sleep_title" + android:summaryOn="@string/pref_sleep_summary_on" + android:summaryOff="@string/pref_sleep_summary_off" + android:defaultValue="false" + android:key="show_sleep" + /> + <CheckBoxPreference android:title="@string/pref_blur_behind_title" android:summaryOn="@string/pref_blur_behind_summary_on" |