• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!--
3/*
4**
5** Copyright 2010, 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
21<ScrollView
22    xmlns:android="http://schemas.android.com/apk/res/android"
23    android:layout_width="fill_parent"
24    android:layout_height="fill_parent"
25>
26    <LinearLayout
27        android:id="@+id/edit_text_list"
28        android:orientation="vertical"
29        android:layout_width="match_parent"
30        android:layout_height="match_parent"
31    >
32        <EditText
33            android:id="@+id/text_multi_lines_none"
34            android:layout_width="fill_parent"
35            android:layout_height="wrap_content"
36            android:inputType="textMultiLine|textAutoCorrect"
37            android:imeOptions="actionUnspecified" />
38        <EditText
39            android:id="@+id/text_multi_lines_send"
40            android:layout_width="fill_parent"
41            android:layout_height="wrap_content"
42            android:inputType="textMultiLine|textAutoCorrect"
43            android:imeOptions="actionSend" />
44        <view
45            class="com.android.inputmethod.tools.edittextvariations.MultiLineShortMessageEditText"
46            android:id="@+id/text_short_message_send_multi_lines"
47            android:layout_width="fill_parent"
48            android:layout_height="wrap_content"
49            android:inputType="textShortMessage|textMultiLine|textAutoCorrect|textCapSentences"
50            android:imeOptions="actionSend" />
51        <view
52            class="com.android.inputmethod.tools.edittextvariations.MultiLineShortMessageEditText"
53            android:id="@+id/text_multi_lines_search"
54            android:layout_width="fill_parent"
55            android:layout_height="wrap_content"
56            android:inputType="textMultiLine|textAutoCorrect|textCapSentences"
57            android:imeOptions="actionSearch" />
58        <EditText
59            android:id="@+id/text_short_message_send"
60            android:layout_width="fill_parent"
61            android:layout_height="wrap_content"
62            android:inputType="textShortMessage|textAutoCorrect|textCapSentences"
63            android:imeOptions="actionSend" />
64        <EditText
65            android:id="@+id/text_autocap_none"
66            android:layout_width="fill_parent"
67            android:layout_height="wrap_content"
68            android:inputType="textAutoCorrect|textCapSentences"
69            android:imeOptions="actionNone" />
70        <EditText
71            android:id="@+id/text_autocap_send"
72            android:layout_width="fill_parent"
73            android:layout_height="wrap_content"
74            android:inputType="textAutoCorrect|textCapSentences"
75            android:imeOptions="actionSend" />
76        <EditText
77            android:id="@+id/text_uri_go"
78            android:layout_width="fill_parent"
79            android:layout_height="wrap_content"
80            android:inputType="textUri"
81            android:imeOptions="actionGo" />
82        <EditText
83            android:id="@+id/text_email_address_done"
84            android:layout_width="fill_parent"
85            android:layout_height="wrap_content"
86            android:inputType="textEmailAddress"
87            android:imeOptions="actionDone" />
88        <EditText
89            android:id="@+id/text_auto_correct_search"
90            android:layout_width="fill_parent"
91            android:layout_height="wrap_content"
92            android:inputType="textAutoCorrect"
93            android:imeOptions="actionSearch" />
94        <EditText
95            android:id="@+id/text_auto_correct_next"
96            android:layout_width="fill_parent"
97            android:layout_height="wrap_content"
98            android:inputType="textAutoCorrect"
99            android:imeOptions="actionNext" />
100        <EditText
101            android:id="@+id/text_auto_correct_previous"
102            android:layout_width="fill_parent"
103            android:layout_height="wrap_content"
104            android:inputType="textAutoCorrect" />
105        <EditText
106            android:id="@+id/text_auto_correct_custom"
107            android:layout_width="fill_parent"
108            android:layout_height="wrap_content"
109            android:inputType="textAutoCorrect"
110            android:imeActionLabel="@string/custom_action_label"
111            android:imeActionId="100" />
112        <EditText
113            android:id="@+id/phone"
114            android:layout_width="fill_parent"
115            android:layout_height="wrap_content"
116            android:inputType="phone" />
117        <EditText
118            android:id="@+id/phone_no_action"
119            android:layout_width="fill_parent"
120            android:layout_height="wrap_content"
121            android:inputType="phone"
122            android:imeOptions="actionNone" />
123        <EditText
124            android:id="@+id/number_send"
125            android:layout_width="fill_parent"
126            android:layout_height="wrap_content"
127            android:inputType="number"
128            android:imeOptions="actionSend" />
129        <EditText
130            android:id="@+id/number_no_action"
131            android:layout_width="fill_parent"
132            android:layout_height="wrap_content"
133            android:inputType="number"
134            android:imeOptions="actionNone" />
135        <EditText
136            android:id="@+id/text_password_next"
137            android:layout_width="fill_parent"
138            android:layout_height="wrap_content"
139            android:inputType="textPassword"
140            android:imeOptions="actionNext" />
141        <EditText
142            android:id="@+id/text_visible_password_done"
143            android:layout_width="fill_parent"
144            android:layout_height="wrap_content"
145            android:inputType="textVisiblePassword"
146            android:imeOptions="actionDone" />
147        <EditText
148            android:id="@+id/number_password_send"
149            android:layout_width="fill_parent"
150            android:layout_height="wrap_content"
151            android:inputType="numberPassword"
152            android:imeOptions="actionDone" />
153        <EditText
154            android:id="@+id/text_no_suggestions"
155            android:layout_width="fill_parent"
156            android:layout_height="wrap_content"
157            android:inputType="textNoSuggestions"
158            android:imeOptions="actionGo" />
159        <EditText
160            android:id="@+id/text_no_auto_correction"
161            android:layout_width="fill_parent"
162            android:layout_height="wrap_content"
163            android:inputType="textShortMessage"
164            android:imeOptions="actionDone" />
165        <WebView
166            android:id="@+id/web_view"
167            android:layout_width="fill_parent"
168            android:layout_height="380sp"
169            android:focusable="true" />
170        <EditText
171            android:id="@+id/text_cap_characters_with_auto_correction"
172            android:layout_width="fill_parent"
173            android:layout_height="wrap_content"
174            android:inputType="textCapCharacters|textAutoCorrect" />
175        <EditText
176            android:id="@+id/text_cap_words_with_auto_correction"
177            android:layout_width="fill_parent"
178            android:layout_height="wrap_content"
179            android:inputType="textCapWords|textAutoCorrect" />
180        <EditText
181            android:id="@+id/text_cap_sentences_with_auto_correction"
182            android:layout_width="fill_parent"
183            android:layout_height="wrap_content"
184            android:inputType="textCapSentences|textAutoCorrect" />
185        <EditText
186            android:id="@+id/text_cap_characters"
187            android:layout_width="fill_parent"
188            android:layout_height="wrap_content"
189            android:inputType="textCapCharacters" />
190        <EditText
191            android:id="@+id/text_cap_words"
192            android:layout_width="fill_parent"
193            android:layout_height="wrap_content"
194            android:inputType="textCapWords" />
195        <EditText
196            android:id="@+id/text_cap_sentences"
197            android:layout_width="fill_parent"
198            android:layout_height="wrap_content"
199            android:inputType="textCapSentences" />
200        <EditText
201            android:id="@+id/text_email_subject"
202            android:layout_width="fill_parent"
203            android:layout_height="wrap_content"
204            android:inputType="textEmailSubject" />
205        <EditText
206            android:id="@+id/text_personal_name"
207            android:layout_width="fill_parent"
208            android:layout_height="wrap_content"
209            android:inputType="textPersonName" />
210        <EditText
211            android:id="@+id/text_postal_address"
212            android:layout_width="fill_parent"
213            android:layout_height="wrap_content"
214            android:inputType="textPostalAddress" />
215        <EditText
216            android:id="@+id/text_phonetic"
217            android:layout_width="fill_parent"
218            android:layout_height="wrap_content"
219            android:inputType="textPhonetic" />
220        <EditText
221            android:id="@+id/number_signed"
222            android:layout_width="fill_parent"
223            android:layout_height="wrap_content"
224            android:inputType="numberSigned" />
225        <EditText
226            android:id="@+id/number_decimal"
227            android:layout_width="fill_parent"
228            android:layout_height="wrap_content"
229            android:inputType="numberDecimal" />
230        <EditText
231            android:id="@+id/number_signed_decimal"
232            android:layout_width="fill_parent"
233            android:layout_height="wrap_content"
234            android:inputType="numberSigned|numberDecimal" />
235        <EditText
236            android:id="@+id/date_time"
237            android:layout_width="fill_parent"
238            android:layout_height="wrap_content"
239            android:inputType="datetime" />
240        <EditText
241            android:id="@+id/date"
242            android:layout_width="fill_parent"
243            android:layout_height="wrap_content"
244            android:inputType="date" />
245        <EditText
246            android:id="@+id/time"
247            android:layout_width="fill_parent"
248            android:layout_height="wrap_content"
249            android:inputType="time" />
250        <EditText
251            android:id="@+id/text_no_extract_ui"
252            android:layout_width="fill_parent"
253            android:layout_height="wrap_content"
254            android:inputType="text"
255            android:imeOptions="flagNoExtractUi" />
256        <EditText
257            android:id="@+id/text_no_fullscreen"
258            android:layout_width="fill_parent"
259            android:layout_height="wrap_content"
260            android:inputType="textCapSentences"
261            android:imeOptions="flagNoFullscreen" />
262        <EditText
263            android:id="@+id/text_nm"
264            android:layout_width="fill_parent"
265            android:layout_height="wrap_content"
266            android:inputType="text"
267            android:privateImeOptions="nm" />
268        <EditText
269            android:id="@+id/text_force_ascii_flag"
270            android:layout_width="fill_parent"
271            android:layout_height="wrap_content"
272            android:inputType="text" />
273        <AutoCompleteTextView
274            android:id="@+id/text_app_completion"
275            android:layout_width="fill_parent"
276            android:layout_height="wrap_content" />
277        <AutoCompleteTextView
278            android:id="@+id/text_app_completion_no_fullscreen"
279            android:layout_width="fill_parent"
280            android:layout_height="wrap_content"
281            android:imeOptions="flagNoFullscreen" />
282        <AutoCompleteTextView
283            android:id="@+id/text_app_compeletion_no_extract_ui"
284            android:layout_width="fill_parent"
285            android:layout_height="wrap_content"
286            android:imeOptions="flagNoExtractUi" />
287        <EditText
288            android:id="@+id/text_restarting"
289            android:layout_width="fill_parent"
290            android:layout_height="wrap_content"
291            android:inputType="text" />
292        <EditText
293            android:id="@+id/text_null"
294            android:layout_width="fill_parent"
295            android:layout_height="wrap_content"
296            android:inputType="none" />
297    </LinearLayout>
298</ScrollView>
299