diff options
author | Steve Slaven <bpk@hoopajoo.net> | 2010-12-28 00:37:50 (GMT) |
---|---|---|
committer | Steve Slaven <bpk@hoopajoo.net> | 2010-12-28 00:37:50 (GMT) |
commit | bf52c9978704a78ca04f21da1a71255f64f67986 (patch) | |
tree | 8edad06c5559e07351b0780098908db87d67afd1 /res/xml | |
parent | 34e30f3558cf4b72168c210a24a2c862ec4e6f03 (diff) | |
download | SoftKeys-bf52c9978704a78ca04f21da1a71255f64f67986.zip SoftKeys-bf52c9978704a78ca04f21da1a71255f64f67986.tar.gz SoftKeys-bf52c9978704a78ca04f21da1a71255f64f67986.tar.bz2 |
Nest all the prefs since there are so many
Diffstat (limited to 'res/xml')
-rw-r--r-- | res/xml/prefs.xml | 36 |
1 files changed, 21 insertions, 15 deletions
diff --git a/res/xml/prefs.xml b/res/xml/prefs.xml index fff8425..1e713d7 100644 --- a/res/xml/prefs.xml +++ b/res/xml/prefs.xml @@ -18,8 +18,9 @@ --> <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"> - <PreferenceCategory - android:title="@string/pref_category_service_title"> + <PreferenceScreen + android:title="@string/pref_category_service_title" + android:summary="@string/pref_category_service_summary"> <CheckBoxPreference android:title="@string/pref_service_title" @@ -77,10 +78,11 @@ android:key="service_no_background" /> - </PreferenceCategory> + </PreferenceScreen> - <PreferenceCategory - android:title="@string/pref_category_virtual_title"> + <PreferenceScreen + android:title="@string/pref_category_virtual_title" + android:summary="@string/pref_category_virtual_summary"> <ListPreference android:title="@string/pref_launcher_title" @@ -102,10 +104,11 @@ /> - </PreferenceCategory> + </PreferenceScreen> - <PreferenceCategory - android:title="@string/pref_category_physical_title"> + <PreferenceScreen + android:title="@string/pref_category_physical_title" + android:summary="@string/pref_category_physical_summary"> <!-- <Preference android:title="@string/pref_physical_note_title" @@ -149,10 +152,12 @@ android:defaultValue="200" /> - </PreferenceCategory> + </PreferenceScreen> - <PreferenceCategory - android:title="@string/pref_category_visual_title"> + + <PreferenceScreen + android:title="@string/pref_category_visual_title" + android:summary="@string/pref_category_visual_summary"> <ListPreference android:title="@string/pref_theme_title" @@ -212,10 +217,11 @@ <ListPreference android:title="@string/pref_order_search_title" android:summary="@string/pref_order_search_summary" android:key="order_search" android:entries="@array/orderValues" android:entryValues="@array/orderValues" android:defaultValue="4" /> </PreferenceScreen> - </PreferenceCategory> + </PreferenceScreen> - <PreferenceCategory - android:title="@string/pref_notification_bar_title"> + <PreferenceScreen + android:title="@string/pref_category_notification_bar_title" + android:summary="@string/pref_category_notification_bar_summary"> <CheckBoxPreference android:title="@string/pref_nb_softkeys_title" android:summaryOn="@string/pref_nb_softkeys_summary_on" @@ -252,7 +258,7 @@ android:defaultValue="false" android:key="nb_search" /> - </PreferenceCategory> + </PreferenceScreen> <PreferenceCategory android:title="@string/pref_category_info_title"> |