1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3/* //device/apps/Settings/assets/res/any/layout/keyboard_version.xml 4** 5** Copyright 2006, The Android Open Source Project 6** 7** Licensed under the Apache License, Version 2.0 (the "License"); 8** you may not use this file except in compliance with the License. 9** You may obtain a copy of the License at 10** 11** http://www.apache.org/licenses/LICENSE-2.0 12** 13** Unless required by applicable law or agreed to in writing, software 14** distributed under the License is distributed on an "AS IS" BASIS, 15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16** See the License for the specific language governing permissions and 17** limitations under the License. 18*/ 19--> 20<ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 21 android:layout_width="fill_parent" 22 android:layout_height="fill_parent"> 23 24 <RelativeLayout 25 android:layout_width="fill_parent" 26 android:layout_height="fill_parent"> 27 28 <TextView android:id="@+id/debug_app_label" 29 android:layout_width="wrap_content" 30 android:layout_height="wrap_content" 31 android:layout_alignParentTop="true" 32 android:layout_alignParentLeft="true" 33 android:text="@string/development_settings_debug_app_label_text" /> 34 35 <Button android:id="@+id/debug_app" 36 android:layout_width="wrap_content" 37 android:layout_height="wrap_content" 38 android:layout_below="@id/debug_app_label" 39 android:layout_alignParentLeft="true" 40 android:layout_toRightOf="@id/debug_app_label" /> 41 42 <!-- android:visibility="gone" --> 43 44 <CheckBox android:id="@+id/wait_for_debugger" 45 android:layout_width="wrap_content" 46 android:layout_height="wrap_content" 47 android:layout_below="@id/debug_app" 48 android:layout_alignParentLeft="true" 49 android:text="@string/development_settings_wait_for_debugger_text" /> 50 51 <View android:id="@+id/separator" 52 android:layout_width="8dip" 53 android:layout_height="8dip" 54 android:layout_below="@id/wait_for_debugger" 55 android:layout_alignParentLeft="true" /> 56 57 <CheckBox android:id="@+id/show_load" 58 android:layout_width="wrap_content" 59 android:layout_height="wrap_content" 60 android:layout_below="@id/separator" 61 android:layout_alignParentLeft="true" 62 android:text="@string/development_settings_show_load_text" /> 63 64 <CheckBox android:id="@+id/show_updates" 65 android:layout_width="wrap_content" 66 android:layout_height="wrap_content" 67 android:layout_below="@id/show_load" 68 android:layout_alignParentLeft="true" 69 android:text="@string/development_settings_show_updates_text" /> 70 71 <CheckBox android:id="@+id/compatibility_mode" 72 android:layout_width="wrap_content" 73 android:layout_height="wrap_content" 74 android:layout_below="@id/show_updates" 75 android:layout_alignParentLeft="true" 76 android:text="@string/development_settings_compatibility_mode_text" /> 77 78 <Spinner android:id="@+id/max_procs" 79 android:layout_width="fill_parent" 80 android:layout_height="wrap_content" 81 android:layout_below="@id/compatibility_mode" 82 android:layout_alignParentLeft="true" /> 83 84 <View android:id="@+id/separator2" 85 android:layout_width="8dip" 86 android:layout_height="8dip" 87 android:layout_below="@id/max_procs" 88 android:layout_alignParentLeft="true" /> 89 90 <CheckBox android:id="@+id/always_finish" 91 android:layout_width="wrap_content" 92 android:layout_height="wrap_content" 93 android:layout_below="@id/separator2" 94 android:layout_alignParentLeft="true" 95 android:text="@string/development_settings_always_finish_text" /> 96 97 <CheckBox android:id="@+id/show_cpu" 98 android:layout_width="wrap_content" 99 android:layout_height="wrap_content" 100 android:layout_below="@id/always_finish" 101 android:layout_alignParentLeft="true" 102 android:text="@string/development_settings_show_cpu_text" /> 103 104 <CheckBox android:id="@+id/enable_gl" 105 android:layout_width="wrap_content" 106 android:layout_height="wrap_content" 107 android:layout_below="@id/show_cpu" 108 android:layout_alignParentLeft="true" 109 android:text="@string/development_settings_enable_gl_text" /> 110 111 <CheckBox android:id="@+id/show_background" 112 android:layout_width="wrap_content" 113 android:layout_height="wrap_content" 114 android:layout_below="@id/enable_gl" 115 android:layout_alignParentLeft="true" 116 android:text="@string/development_settings_show_background_text" /> 117 118 <CheckBox android:id="@+id/show_sleep" 119 android:layout_width="wrap_content" 120 android:layout_height="wrap_content" 121 android:layout_below="@id/show_background" 122 android:layout_alignParentLeft="true" 123 android:text="@string/development_settings_show_sleep_text" /> 124 125 <Spinner android:id="@+id/window_animation_scale" 126 android:layout_width="fill_parent" 127 android:layout_height="wrap_content" 128 android:layout_below="@id/show_sleep" 129 android:layout_alignParentLeft="true"> 130 </Spinner> 131 132 <Spinner android:id="@+id/transition_animation_scale" 133 android:layout_width="fill_parent" 134 android:layout_height="wrap_content" 135 android:layout_below="@id/window_animation_scale" 136 android:layout_alignParentLeft="true"> 137 </Spinner> 138 139 <Spinner android:id="@+id/font_hinting" 140 android:layout_width="fill_parent" 141 android:layout_height="wrap_content" 142 android:layout_below="@id/transition_animation_scale" 143 android:layout_alignParentLeft="true"> 144 </Spinner> 145 146 <CheckBox android:id="@+id/show_xmpp" 147 android:layout_width="wrap_content" 148 android:layout_height="wrap_content" 149 android:layout_below="@id/font_hinting" 150 android:layout_alignParentLeft="true" 151 android:text="@string/development_settings_show_xmpp_text" /> 152 153 </RelativeLayout> 154 155</ScrollView> 156 157