blob: 6be2f6f9aaead70033a0498a70ff0b5d651cace9 [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
Vivek Sekhared791da2015-02-22 12:39:05 -08007
The Android Open Source Project0c908882009-03-03 19:32:16 -08008 http://www.apache.org/licenses/LICENSE-2.0
Vivek Sekhared791da2015-02-22 12:39:05 -08009
The Android Open Source Project0c908882009-03-03 19:32:16 -080010 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
Vivek Sekhared791da2015-02-22 12:39:05 -080023 <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"
Vivek Sekhared791da2015-02-22 12:39:05 -080028 android:layout_marginStart="20dip"
29 android:layout_marginEnd="20dip" />
30
The Android Open Source Project0c908882009-03-03 19:32:16 -080031 <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"
Vivek Sekhared791da2015-02-22 12:39:05 -080037 android:layout_marginStart="20dip"
38 android:layout_marginEnd="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"
Vivek Sekhared791da2015-02-22 12:39:05 -080047 android:layout_marginStart="20dip"
48 android:layout_marginEnd="20dip" />
49
The Android Open Source Project0c908882009-03-03 19:32:16 -080050 <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"
Vivek Sekhared791da2015-02-22 12:39:05 -080056 android:layout_marginStart="20dip"
57 android:layout_marginEnd="20dip"
John Recke8872c72011-02-28 17:52:53 -080058 android:layout_marginBottom="12dip"
59 android:singleLine="true"
60 android:imeOptions="actionDone" />
61</LinearLayout>