John Reck | 40badf2 | 2011-04-20 15:31:13 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2011 The Android Open Source Project |
| 3 | |
| 4 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | you may not use this file except in compliance with the License. |
| 6 | You may obtain a copy of the License at |
| 7 | |
| 8 | http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | |
| 10 | Unless required by applicable law or agreed to in writing, software |
| 11 | distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | See the License for the specific language governing permissions and |
| 14 | limitations under the License. |
| 15 | --> |
| 16 | |
| 17 | <PreferenceScreen |
| 18 | xmlns:android="http://schemas.android.com/apk/res/android"> |
| 19 | |
John Reck | 92f25f8 | 2011-04-26 16:57:10 -0700 | [diff] [blame] | 20 | <CheckBoxPreference android:key="force_userscalable" |
| 21 | android:title="@string/pref_force_userscalable" |
| 22 | android:summary="@string/pref_force_userscalable_summary" |
| 23 | android:defaultValue="false" /> |
| 24 | |
John Reck | 8fc22a1 | 2011-06-16 14:57:41 -0700 | [diff] [blame] | 25 | <PreferenceCategory android:title="@string/pref_font_size_category"> |
Bijan Amirzada | 41242f2 | 2014-03-21 12:12:18 -0700 | [diff] [blame] | 26 | <com.android.browser.preferences.FontSizePreview |
John Reck | 8fc22a1 | 2011-06-16 14:57:41 -0700 | [diff] [blame] | 27 | android:title="@string/preview" /> |
Bijan Amirzada | 41242f2 | 2014-03-21 12:12:18 -0700 | [diff] [blame] | 28 | <com.android.browser.preferences.SeekBarSummaryPreference |
John Reck | 7dc444b | 2011-06-16 17:44:29 -0700 | [diff] [blame] | 29 | android:key="text_zoom" |
| 30 | android:title="@string/pref_text_zoom" |
| 31 | android:defaultValue="10" |
| 32 | android:max="30" /> |
John Reck | 8fc22a1 | 2011-06-16 14:57:41 -0700 | [diff] [blame] | 33 | |
Tarun Nainani | 22d2995 | 2014-10-01 14:52:35 -0700 | [diff] [blame^] | 34 | <!-- SWE - remove double tap zoom from settings. |
Bijan Amirzada | 41242f2 | 2014-03-21 12:12:18 -0700 | [diff] [blame] | 35 | <com.android.browser.preferences.SeekBarSummaryPreference |
Mangesh Ghiware | 67f45c2 | 2011-10-12 14:43:32 -0700 | [diff] [blame] | 36 | android:key="double_tap_zoom" |
| 37 | android:title="@string/pref_zoom_on_double_tap" |
| 38 | android:defaultValue="5" |
| 39 | android:max="10" /> |
Tarun Nainani | 22d2995 | 2014-10-01 14:52:35 -0700 | [diff] [blame^] | 40 | --> |
Bijan Amirzada | 41242f2 | 2014-03-21 12:12:18 -0700 | [diff] [blame] | 41 | <com.android.browser.preferences.SeekBarSummaryPreference |
John Reck | 8fc22a1 | 2011-06-16 14:57:41 -0700 | [diff] [blame] | 42 | android:key="min_font_size" |
| 43 | android:title="@string/pref_min_font_size" |
| 44 | android:defaultValue="0" |
John Reck | 7dc444b | 2011-06-16 17:44:29 -0700 | [diff] [blame] | 45 | android:max="20" /> |
John Reck | 8fc22a1 | 2011-06-16 14:57:41 -0700 | [diff] [blame] | 46 | </PreferenceCategory> |
| 47 | |
Bijan Amirzada | 9b1e988 | 2014-02-26 17:15:46 -0800 | [diff] [blame] | 48 | <!-- // SWE_TODO: Commenting out inverted rendering settings |
Nicolas Roard | 5d51310 | 2011-08-03 15:35:34 -0700 | [diff] [blame] | 49 | <PreferenceCategory android:title="@string/pref_inverted_category"> |
Bijan Amirzada | 9b1e988 | 2014-02-26 17:15:46 -0800 | [diff] [blame] | 50 | |
Bijan Amirzada | 41242f2 | 2014-03-21 12:12:18 -0700 | [diff] [blame] | 51 | <com.android.browser.preferences.InvertedContrastPreview |
John Reck | eabe5da | 2011-08-08 13:24:13 -0700 | [diff] [blame] | 52 | android:title="@string/preview" /> |
Nicolas Roard | 5d51310 | 2011-08-03 15:35:34 -0700 | [diff] [blame] | 53 | |
| 54 | <CheckBoxPreference |
| 55 | android:key="inverted" |
| 56 | android:defaultValue="false" |
| 57 | android:title="@string/pref_inverted" |
| 58 | android:summary="@string/pref_inverted_summary" /> |
| 59 | |
Bijan Amirzada | 41242f2 | 2014-03-21 12:12:18 -0700 | [diff] [blame] | 60 | <com.android.browser.preferences.SeekBarSummaryPreference |
Nicolas Roard | 5d51310 | 2011-08-03 15:35:34 -0700 | [diff] [blame] | 61 | android:key="inverted_contrast" |
| 62 | android:title="@string/pref_inverted_contrast" |
John Reck | eabe5da | 2011-08-08 13:24:13 -0700 | [diff] [blame] | 63 | android:dependency="inverted" |
Nicolas Roard | 5d51310 | 2011-08-03 15:35:34 -0700 | [diff] [blame] | 64 | android:defaultValue="0" |
| 65 | android:max="20" /> |
Nicolas Roard | 5d51310 | 2011-08-03 15:35:34 -0700 | [diff] [blame] | 66 | </PreferenceCategory> |
Bijan Amirzada | 9b1e988 | 2014-02-26 17:15:46 -0800 | [diff] [blame] | 67 | --> |
Nicolas Roard | 5d51310 | 2011-08-03 15:35:34 -0700 | [diff] [blame] | 68 | |
John Reck | 40badf2 | 2011-04-20 15:31:13 -0700 | [diff] [blame] | 69 | </PreferenceScreen> |