summaryrefslogtreecommitdiffstats
path: root/res/xml
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2011-06-16 14:57:41 -0700
committerJohn Reck <jreck@google.com>2011-06-16 15:15:09 -0700
commit8fc22a1c7846b4c7c7b74d1ec59ffc59c2695c15 (patch)
tree8f5f7cd3fb000d4c1fd9dd557b7a8a9c05f43187 /res/xml
parentf3828cd09f12cbf2980af72187628a608db8e938 (diff)
downloadandroid_packages_apps_Gello-8fc22a1c7846b4c7c7b74d1ec59ffc59c2695c15.tar.gz
android_packages_apps_Gello-8fc22a1c7846b4c7c7b74d1ec59ffc59c2695c15.tar.bz2
android_packages_apps_Gello-8fc22a1c7846b4c7c7b74d1ec59ffc59c2695c15.zip
Clean up accessibility settings
Bug: 4487879 Change-Id: I22b4e8442d20d635b9e41c214dcb20748c12f251
Diffstat (limited to 'res/xml')
-rw-r--r--res/xml/accessibility_preferences.xml35
1 files changed, 20 insertions, 15 deletions
diff --git a/res/xml/accessibility_preferences.xml b/res/xml/accessibility_preferences.xml
index 799d0e2d..6109a646 100644
--- a/res/xml/accessibility_preferences.xml
+++ b/res/xml/accessibility_preferences.xml
@@ -17,24 +17,29 @@
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
- <com.android.browser.preferences.WebViewPreview />
-
- <ListPreference
- android:key="text_size"
- android:title="@string/pref_text_size"
- android:defaultValue="NORMAL"
- android:entries="@array/pref_text_size_choices"
- android:entryValues="@array/pref_text_size_values"
- android:dialogTitle="@string/pref_text_size_dialogtitle" />
-
- <com.android.browser.preferences.MinFontSizePreference
- android:key="min_font_size"
- android:title="@string/pref_min_font_size"
- android:defaultValue="1" />
-
<CheckBoxPreference android:key="force_userscalable"
android:title="@string/pref_force_userscalable"
android:summary="@string/pref_force_userscalable_summary"
android:defaultValue="false" />
+ <PreferenceCategory android:title="@string/pref_font_size_category">
+ <com.android.browser.preferences.WebViewPreview
+ android:title="@string/preview" />
+
+ <ListPreference
+ android:key="text_size"
+ android:title="@string/pref_text_size"
+ android:defaultValue="NORMAL"
+ android:entries="@array/pref_text_size_choices"
+ android:entryValues="@array/pref_text_size_values"
+ android:dialogTitle="@string/pref_text_size_dialogtitle" />
+
+ <com.android.browser.preferences.FontSizePreference
+ android:key="min_font_size"
+ android:title="@string/pref_min_font_size"
+ android:defaultValue="0"
+ android:max="18" />
+
+ </PreferenceCategory>
+
</PreferenceScreen>