diff options
author | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
---|---|---|
committer | The Android Open Source Project <initial-contribution@android.com> | 2008-10-21 07:00:00 -0700 |
commit | ba6d7b853c32ad6c3be26c443daa61f322bcfdc2 (patch) | |
tree | 1bb508b3b9cecf0b9f69271d4c4e953a5b5556f5 /res/xml/debug_preferences.xml | |
download | packages_apps_browser-ba6d7b853c32ad6c3be26c443daa61f322bcfdc2.zip packages_apps_browser-ba6d7b853c32ad6c3be26c443daa61f322bcfdc2.tar.gz packages_apps_browser-ba6d7b853c32ad6c3be26c443daa61f322bcfdc2.tar.bz2 |
Initial Contribution
Diffstat (limited to 'res/xml/debug_preferences.xml')
-rw-r--r-- | res/xml/debug_preferences.xml | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/res/xml/debug_preferences.xml b/res/xml/debug_preferences.xml new file mode 100644 index 0000000..22b5997 --- /dev/null +++ b/res/xml/debug_preferences.xml @@ -0,0 +1,62 @@ +<?xml version="1.0" encoding="utf-8"?> +<!-- Copyright (C) 2008 The Android Open Source Project + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> + +<PreferenceScreen + xmlns:android="http://schemas.android.com/apk/res/android" > + <PreferenceCategory + android:title="@string/pref_development_title" + android:key="debug_menu" > + + <CheckBoxPreference + android:key="small_screen" + android:defaultValue="false" + android:title="@string/pref_development_single_column_rendering" /> + + <CheckBoxPreference + android:key="wide_viewport" + android:defaultValue="true" + android:title="@string/pref_development_viewport" /> + + <CheckBoxPreference + android:key="normal_layout" + android:defaultValue="false" + android:title="@string/pref_development_normal_rendering" /> + + <CheckBoxPreference + android:key="enable_tracing" + android:defaultValue="false" + android:title="@string/pref_development_trace" /> + + <CheckBoxPreference + android:key="enable_light_touch" + android:defaultValue="false" + android:title="Enable light touch" /> + + <CheckBoxPreference + android:key="enable_nav_dump" + android:defaultValue="false" + android:title="@string/pref_development_nav_dump" /> + + <ListPreference + android:key="user_agent" + android:title="@string/pref_development_uastring" + android:entries="@array/pref_development_ua_choices" + android:entryValues="@array/pref_development_ua_values" + android:defaultValue="0"/> + + </PreferenceCategory> + +</PreferenceScreen> |