diff options
Diffstat (limited to 'res/xml')
-rw-r--r-- | res/xml/prefs.xml | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/res/xml/prefs.xml b/res/xml/prefs.xml index fddc692..f2bfd5b 100644 --- a/res/xml/prefs.xml +++ b/res/xml/prefs.xml @@ -30,6 +30,14 @@ android:key="service" /> + <CheckBoxPreference + android:title="@string/pref_service_boot_title" + android:summaryOn="@string/pref_service_boot_summary_on" + android:summaryOff="@string/pref_service_boot_summary_off" + android:defaultValue="true" + android:key="service_boot" + /> + <ListPreference android:title="@string/pref_service_size_title" android:summaryOn="@string/pref_service_size_summary" @@ -38,6 +46,30 @@ android:defaultValue="medium" android:key="service_size" /> + + <CheckBoxPreference + android:title="@string/pref_service_drag_popper_title" + android:summaryOn="@string/pref_service_drag_popper_summary_on" + android:summaryOff="@string/pref_service_drag_popper_summary_off" + android:defaultValue="true" + android:key="service_drag_popper" + /> + + <CheckBoxPreference + android:title="@string/pref_service_drag_title" + android:summaryOn="@string/pref_service_drag_summary_on" + android:summaryOff="@string/pref_service_drag_summary_off" + android:defaultValue="true" + android:key="service_drag" + /> + + <CheckBoxPreference + android:title="@string/pref_service_drag_extra_title" + android:summaryOn="@string/pref_service_drag_extra_summary_on" + android:summaryOff="@string/pref_service_drag_extra_summary_off" + android:defaultValue="true" + android:key="service_drag_extra" + /> <com.hlidskialf.android.preference.SeekBarPreference android:key="service_transparency" @@ -61,7 +93,8 @@ android:summary="@string/pref_service_popper_transparency_summary" android:defaultValue="0" android:max="100" - /> + /> + <CheckBoxPreference android:title="@string/pref_service_close_after_title" android:summaryOn="@string/pref_service_close_after_summary_on" |