Home | History | Annotate | Download | only in xml
      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 
     20     <CheckBoxPreference
     21         android:key="enable_hardware_accel"
     22         android:defaultValue="true"
     23         android:title="@string/pref_development_hardware_accel" />
     24 
     25     <CheckBoxPreference
     26         android:key="enable_hardware_accel_skia"
     27         android:defaultValue="false"
     28         android:title="@string/pref_development_hardware_accel_skia"
     29         android:enabled="false" />
     30 
     31     <ListPreference
     32         android:key="user_agent"
     33         android:title="@string/pref_development_uastring"
     34         android:entries="@array/pref_development_ua_choices"
     35         android:entryValues="@array/pref_development_ua_values"
     36         android:defaultValue="0"/>
     37 
     38     <CheckBoxPreference
     39         android:key="enable_visual_indicator"
     40         android:defaultValue="false"
     41         android:title="@string/pref_development_visual_indicator" />
     42 
     43     <CheckBoxPreference
     44         android:key="enable_cpu_upload_path"
     45         android:defaultValue="false"
     46         android:title="@string/pref_development_cpu_upload_path" />
     47 
     48     <!-- The javascript console is enabled by default when the user has
     49          also enabled debug mode by navigating to about:debug. -->
     50     <CheckBoxPreference
     51         android:key="javascript_console"
     52         android:defaultValue="true"
     53         android:title="@string/pref_development_error_console" />
     54 
     55     <CheckBoxPreference
     56         android:key="small_screen"
     57         android:defaultValue="false"
     58         android:title="@string/pref_development_single_column_rendering" />
     59 
     60     <CheckBoxPreference
     61         android:key="wide_viewport"
     62         android:defaultValue="true"
     63         android:title="@string/pref_development_viewport" />
     64 
     65     <CheckBoxPreference
     66         android:key="normal_layout"
     67         android:defaultValue="false"
     68         android:title="@string/pref_development_normal_rendering" />
     69 
     70     <CheckBoxPreference
     71         android:key="enable_tracing"
     72         android:defaultValue="false"
     73         android:title="@string/pref_development_trace" />
     74 
     75     <CheckBoxPreference
     76         android:key="enable_light_touch"
     77         android:defaultValue="false"
     78         android:title="Enable light touch" />
     79 
     80     <CheckBoxPreference
     81         android:key="enable_nav_dump"
     82         android:defaultValue="false"
     83         android:title="@string/pref_development_nav_dump" />
     84 
     85     <EditTextPreference
     86         android:key="js_engine_flags"
     87         android:title="@string/js_engine_flags"
     88         android:singleLine="true" />
     89 
     90     <Preference
     91         android:key="reset_prelogin"
     92         android:title="@string/pref_development_reset_prelogin" />
     93 
     94 </PreferenceScreen>
     95