The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 1 | <?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 Guy | 15b8ec6 | 2010-01-08 15:06:43 -0800 | [diff] [blame] | 18 | android:layout_width="match_parent" |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 19 | android:layout_height="wrap_content" |
| 20 | android:gravity="center_horizontal" |
Michael Kolb | d3e4d4f | 2010-10-15 10:58:44 -0700 | [diff] [blame] | 21 | android:orientation="vertical" |
| 22 | > |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 23 | |
| 24 | <TextView |
| 25 | android:id="@+id/username_view" |
| 26 | android:layout_height="wrap_content" |
| 27 | android:layout_width="wrap_content" |
The Android Open Source Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 28 | 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 Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 36 | 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 Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 48 | 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 Project | 0c90888 | 2009-03-03 19:32:16 -0800 | [diff] [blame] | 55 | 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> |