blob: 35dfbe6b7f660565f503e636cf2df7fddc9667da [file] [log] [blame]
Ben Murdochaf554522010-09-10 22:09:30 +01001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2010 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<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
17 android:layout_width="match_parent"
18 android:layout_height="match_parent"
19 android:orientation="vertical">
20
21<TextView
22 android:layout_width="wrap_content"
23 android:layout_height="wrap_content"
24 android:textAppearance="?android:attr/textAppearanceLarge"
25 android:text="@string/pref_autofill_profile_editor" />
26
27<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
28 android:layout_width="match_parent"
29 android:layout_height="wrap_content"
30 android:stretchColumns="1"
31 android:paddingLeft="100dip"
32 android:paddingRight="100dip" >
33
34 <TableRow>
35 <TextView
36 android:layout_width="wrap_content"
37 android:layout_height="wrap_content"
38 android:gravity="center_vertical"
39 android:padding="10dip"
40 android:textAppearance="?android:attr/textAppearanceMedium"
41 android:text="@string/autofill_profile_editor_name" />
42 <EditText android:id="@+id/autofill_profile_editor_name_edit"
43 android:layout_width="match_parent"
44 android:layout_height="wrap_content"
45 android:textAppearance="?android:attr/textAppearanceMedium"
46 android:singleLine="true" />
47 </TableRow>
48 <TableRow>
49 <TextView
50 android:layout_width="wrap_content"
51 android:layout_height="wrap_content"
52 android:gravity="center_vertical"
53 android:padding="10dip"
54 android:textAppearance="?android:attr/textAppearanceMedium"
55 android:text="@string/autofill_profile_editor_email_address" />
56 <EditText android:id="@+id/autofill_profile_editor_email_address_edit"
57 android:layout_width="match_parent"
58 android:layout_height="wrap_content"
59 android:textAppearance="?android:attr/textAppearanceMedium"
60 android:singleLine="true" />
61 </TableRow>
62</TableLayout>
63
64<Button
65 android:id="@+id/autofill_profile_editor_save_button"
66 android:layout_width="wrap_content"
67 android:layout_height="wrap_content"
68 android:text="@string/autofill_profile_editor_save_profile"
69 android:textAppearance="?android:attr/textAppearanceMedium" />
70
71</LinearLayout>