blob: a7124f4a45a9283c1114bc70b2062f136a351730 [file] [log] [blame]
John Reck40badf22011-04-20 15:31:13 -07001<?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 Reck92f25f82011-04-26 16:57:10 -070020 <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 Reck8fc22a12011-06-16 14:57:41 -070025 <PreferenceCategory android:title="@string/pref_font_size_category">
26 <com.android.browser.preferences.WebViewPreview
27 android:title="@string/preview" />
28
John Reck7dc444b2011-06-16 17:44:29 -070029 <com.android.browser.preferences.FontSizePreference
30 android:key="text_zoom"
31 android:title="@string/pref_text_zoom"
32 android:defaultValue="10"
33 android:max="30" />
John Reck8fc22a12011-06-16 14:57:41 -070034
35 <com.android.browser.preferences.FontSizePreference
36 android:key="min_font_size"
37 android:title="@string/pref_min_font_size"
38 android:defaultValue="0"
John Reck7dc444b2011-06-16 17:44:29 -070039 android:max="20" />
John Reck8fc22a12011-06-16 14:57:41 -070040
41 </PreferenceCategory>
42
John Reck40badf22011-04-20 15:31:13 -070043</PreferenceScreen>