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="match_parent"
22    android:layout_height="match_parent">
23
24    <RelativeLayout
25        android:layout_width="match_parent"
26        android:layout_height="match_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        <Spinner android:id="@+id/pointer_location"
58            android:layout_width="match_parent"
59            android:layout_height="wrap_content"
60            android:layout_below="@id/separator"
61            android:layout_alignParentLeft="true" />
62
63        <CheckBox android:id="@+id/show_load"
64            android:layout_width="wrap_content"
65            android:layout_height="wrap_content"
66            android:layout_below="@id/pointer_location"
67            android:layout_alignParentLeft="true"
68            android:text="@string/development_settings_show_load_text" />
69
70        <CheckBox android:id="@+id/show_updates"
71            android:layout_width="wrap_content"
72            android:layout_height="wrap_content"
73            android:layout_below="@id/show_load"
74            android:layout_alignParentLeft="true"
75            android:text="@string/development_settings_show_updates_text" />
76
77        <Spinner android:id="@+id/strictmode_visual"
78            android:layout_width="match_parent"
79            android:layout_height="wrap_content"
80            android:layout_below="@id/show_updates"
81            android:layout_alignParentLeft="true" />
82
83        <CheckBox android:id="@+id/compatibility_mode"
84            android:layout_width="wrap_content"
85            android:layout_height="wrap_content"
86            android:layout_below="@id/strictmode_visual"
87            android:layout_alignParentLeft="true"
88            android:text="@string/development_settings_compatibility_mode_text" />
89
90        <Spinner android:id="@+id/max_procs"
91            android:layout_width="match_parent"
92            android:layout_height="wrap_content"
93            android:layout_below="@id/compatibility_mode"
94            android:layout_alignParentLeft="true" />
95
96        <View android:id="@+id/separator2"
97            android:layout_width="8dip"
98            android:layout_height="8dip"
99            android:layout_below="@id/max_procs"
100            android:layout_alignParentLeft="true" />
101
102        <CheckBox android:id="@+id/always_finish"
103            android:layout_width="wrap_content"
104            android:layout_height="wrap_content"
105            android:layout_below="@id/separator2"
106            android:layout_alignParentLeft="true"
107            android:text="@string/development_settings_always_finish_text" />
108
109        <CheckBox android:id="@+id/show_cpu"
110            android:layout_width="wrap_content"
111            android:layout_height="wrap_content"
112            android:layout_below="@id/always_finish"
113            android:layout_alignParentLeft="true"
114            android:text="@string/development_settings_show_cpu_text" />
115
116        <CheckBox android:id="@+id/enable_gl"
117            android:layout_width="wrap_content"
118            android:layout_height="wrap_content"
119            android:layout_below="@id/show_cpu"
120            android:layout_alignParentLeft="true"
121            android:text="@string/development_settings_enable_gl_text" />
122
123        <CheckBox android:id="@+id/show_background"
124            android:layout_width="wrap_content"
125            android:layout_height="wrap_content"
126            android:layout_below="@id/enable_gl"
127            android:layout_alignParentLeft="true"
128            android:text="@string/development_settings_show_background_text" />
129
130        <CheckBox android:id="@+id/show_sleep"
131            android:layout_width="wrap_content"
132            android:layout_height="wrap_content"
133            android:layout_below="@id/show_background"
134            android:layout_alignParentLeft="true"
135            android:text="@string/development_settings_show_sleep_text" />
136
137        <Spinner android:id="@+id/window_animation_scale"
138            android:layout_width="match_parent"
139            android:layout_height="wrap_content"
140            android:layout_below="@id/show_sleep"
141            android:layout_alignParentLeft="true">
142        </Spinner>
143
144        <Spinner android:id="@+id/transition_animation_scale"
145            android:layout_width="match_parent"
146            android:layout_height="wrap_content"
147            android:layout_below="@id/window_animation_scale"
148            android:layout_alignParentLeft="true">
149        </Spinner>
150
151        <Spinner android:id="@+id/font_hinting"
152            android:layout_width="match_parent"
153            android:layout_height="wrap_content"
154            android:layout_below="@id/transition_animation_scale"
155            android:layout_alignParentLeft="true">
156        </Spinner>
157
158        <CheckBox android:id="@+id/show_xmpp"
159            android:layout_width="wrap_content"
160            android:layout_height="wrap_content"
161            android:layout_below="@id/font_hinting"
162            android:layout_alignParentLeft="true"
163            android:text="@string/development_settings_show_xmpp_text" />
164
165        <CheckBox android:id="@+id/window_orientation_listener_log"
166            android:layout_width="wrap_content"
167            android:layout_height="wrap_content"
168            android:layout_below="@id/show_xmpp"
169            android:layout_alignParentLeft="true"
170            android:text="@string/development_settings_window_orientation_listener_log" />
171
172    </RelativeLayout>
173
174</ScrollView>
175
176