The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame^] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <!-- Copyright (C) 2008 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 | <PreferenceCategory |
| 20 | android:title="@string/pref_development_title" |
| 21 | android:key="debug_menu" > |
| 22 | |
| 23 | <CheckBoxPreference |
| 24 | android:key="small_screen" |
| 25 | android:defaultValue="false" |
| 26 | android:title="@string/pref_development_single_column_rendering" /> |
| 27 | |
| 28 | <CheckBoxPreference |
| 29 | android:key="wide_viewport" |
| 30 | android:defaultValue="true" |
| 31 | android:title="@string/pref_development_viewport" /> |
| 32 | |
| 33 | <CheckBoxPreference |
| 34 | android:key="normal_layout" |
| 35 | android:defaultValue="false" |
| 36 | android:title="@string/pref_development_normal_rendering" /> |
| 37 | |
| 38 | <CheckBoxPreference |
| 39 | android:key="enable_tracing" |
| 40 | android:defaultValue="false" |
| 41 | android:title="@string/pref_development_trace" /> |
| 42 | |
| 43 | <CheckBoxPreference |
| 44 | android:key="enable_light_touch" |
| 45 | android:defaultValue="false" |
| 46 | android:title="Enable light touch" /> |
| 47 | |
| 48 | <CheckBoxPreference |
| 49 | android:key="enable_nav_dump" |
| 50 | android:defaultValue="false" |
| 51 | android:title="@string/pref_development_nav_dump" /> |
| 52 | |
| 53 | <com.android.browser.BrowserSearchpagePreference |
| 54 | android:key="search_url" |
| 55 | android:title="@string/pref_development_search_url" |
| 56 | android:singleLine="true" /> |
| 57 | |
| 58 | <ListPreference |
| 59 | android:key="user_agent" |
| 60 | android:title="@string/pref_development_uastring" |
| 61 | android:entries="@array/pref_development_ua_choices" |
| 62 | android:entryValues="@array/pref_development_ua_values" |
| 63 | android:defaultValue="0"/> |
| 64 | |
| 65 | </PreferenceCategory> |
| 66 | |
| 67 | </PreferenceScreen> |