blob: cee3a42e49748ace98247716b729f7cb684287fa [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
17<TableLayout 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"
20 android:gravity="center_horizontal"
Michael Kolbd3e4d4f2010-10-15 10:58:44 -070021 android:orientation="vertical"
22 >
The Android Open Source Project0c908882009-03-03 19:32:16 -080023
24 <TextView
25 android:id="@+id/username_view"
26 android:layout_height="wrap_content"
27 android:layout_width="wrap_content"
The Android Open Source Project0c908882009-03-03 19:32:16 -080028 android:text="@string/username"
29 android:gravity="left"
30 android:layout_marginTop="12dip"
31 android:layout_marginLeft="20dip"
32 android:layout_marginRight="20dip" />
33
34 <EditText
35 android:id="@+id/username_edit"
The Android Open Source Project0c908882009-03-03 19:32:16 -080036 android:scrollHorizontally="true"
37 android:inputType="text"
38 android:gravity="fill_horizontal"
39 android:layout_weight="1"
40 android:layout_marginLeft="20dip"
41 android:layout_marginRight="20dip"
42 android:layout_marginBottom="12dip" />
43
44 <TextView
45 android:id="@+id/password_view"
46 android:layout_height="wrap_content"
47 android:layout_width="wrap_content"
The Android Open Source Project0c908882009-03-03 19:32:16 -080048 android:text="@string/password"
49 android:gravity="left"
50 android:layout_marginLeft="20dip"
51 android:layout_marginRight="20dip" />
52
53 <EditText
54 android:id="@+id/password_edit"
The Android Open Source Project0c908882009-03-03 19:32:16 -080055 android:scrollHorizontally="true"
56 android:inputType="textPassword"
57 android:gravity="fill_horizontal"
58 android:layout_weight="1"
59 android:layout_marginLeft="20dip"
60 android:layout_marginRight="20dip"
61 android:layout_marginBottom="12dip" />
62</TableLayout>