blob: 856c45c3e880e48fcfd4b8ec8cdb1afe65f84a17 [file] [log] [blame]
The Android Open Source Project0c908882009-03-03 19:32:16 -08001<?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
John Recke8872c72011-02-28 17:52:53 -080017<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
Romain Guy15b8ec62010-01-08 15:06:43 -080018 android:layout_width="match_parent"
The Android Open Source Project0c908882009-03-03 19:32:16 -080019 android:layout_height="wrap_content"
Michael Kolbd3e4d4f2010-10-15 10:58:44 -070020 android:orientation="vertical"
21 >
The Android Open Source Project0c908882009-03-03 19:32:16 -080022
23 <TextView
The Android Open Source Project0c908882009-03-03 19:32:16 -080024 android:layout_height="wrap_content"
25 android:layout_width="wrap_content"
The Android Open Source Project0c908882009-03-03 19:32:16 -080026 android:text="@string/username"
The Android Open Source Project0c908882009-03-03 19:32:16 -080027 android:layout_marginTop="12dip"
28 android:layout_marginLeft="20dip"
29 android:layout_marginRight="20dip" />
30
31 <EditText
32 android:id="@+id/username_edit"
John Recke8872c72011-02-28 17:52:53 -080033 android:layout_height="wrap_content"
34 android:layout_width="match_parent"
The Android Open Source Project0c908882009-03-03 19:32:16 -080035 android:scrollHorizontally="true"
36 android:inputType="text"
The Android Open Source Project0c908882009-03-03 19:32:16 -080037 android:layout_marginLeft="20dip"
38 android:layout_marginRight="20dip"
John Recke8872c72011-02-28 17:52:53 -080039 android:layout_marginBottom="12dip"
40 android:singleLine="true"
41 android:imeOptions="actionNext" />
The Android Open Source Project0c908882009-03-03 19:32:16 -080042
43 <TextView
The Android Open Source Project0c908882009-03-03 19:32:16 -080044 android:layout_height="wrap_content"
45 android:layout_width="wrap_content"
The Android Open Source Project0c908882009-03-03 19:32:16 -080046 android:text="@string/password"
The Android Open Source Project0c908882009-03-03 19:32:16 -080047 android:layout_marginLeft="20dip"
48 android:layout_marginRight="20dip" />
49
50 <EditText
51 android:id="@+id/password_edit"
John Recke8872c72011-02-28 17:52:53 -080052 android:layout_height="wrap_content"
53 android:layout_width="match_parent"
The Android Open Source Project0c908882009-03-03 19:32:16 -080054 android:scrollHorizontally="true"
55 android:inputType="textPassword"
The Android Open Source Project0c908882009-03-03 19:32:16 -080056 android:layout_marginLeft="20dip"
57 android:layout_marginRight="20dip"
John Recke8872c72011-02-28 17:52:53 -080058 android:layout_marginBottom="12dip"
59 android:singleLine="true"
60 android:imeOptions="actionDone" />
61</LinearLayout>