• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2011 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<!-- Common data-entry area of account name setup screen - account nickname, user name. -->
18<!-- tablet version -->
19<RelativeLayout
20    xmlns:android="http://schemas.android.com/apk/res/android"
21    android:layout_width="match_parent"
22    android:layout_height="wrap_content"
23    android:paddingLeft="@dimen/setup_item_inset_left"
24    android:paddingRight="@dimen/setup_item_inset_right" >
25    <TextView
26        android:id="@+id/account_description_label"
27        android:layout_alignParentTop="true"
28        android:layout_height="wrap_content"
29        android:layout_width="match_parent"
30        android:text="@string/account_setup_names_account_name_label"
31        android:textAppearance="@style/accountSetupLabelText" />
32    <EditText
33        android:id="@+id/account_description"
34        android:layout_below="@+id/account_description_label"
35        android:layout_height="wrap_content"
36        android:layout_width="match_parent"
37        android:contentDescription="@string/account_setup_names_account_name_label"
38        android:inputType="textCapWords"
39        android:imeOptions="actionNext" />
40    <TextView
41        android:id="@+id/account_name_label"
42        android:layout_below="@+id/account_description"
43        android:layout_marginTop="32dip"
44        android:layout_height="wrap_content"
45        android:layout_width="match_parent"
46        android:text="@string/account_setup_names_user_name_label"
47        android:textAppearance="@style/accountSetupLabelText" />
48    <EditText
49        android:id="@+id/account_name"
50        android:layout_below="@+id/account_name_label"
51        android:layout_height="wrap_content"
52        android:layout_width="match_parent"
53        android:contentDescription="@string/account_setup_names_user_name_label"
54        android:inputType="textPersonName"
55        android:imeOptions="actionDone" />
56</RelativeLayout>
57
58