2008-10-28 01:04:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
2009-11-23 00:23:34 +00:00
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
android:layout_width="fill_parent"
|
2013-03-08 02:17:22 +00:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"
|
2009-11-23 00:23:34 +00:00
|
|
|
android:padding="6dip"
|
|
|
|
android:fadingEdge="none"
|
|
|
|
android:scrollbarStyle="outsideInset">
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2012-09-24 16:34:22 +00:00
|
|
|
android:layout_gravity="center_horizontal|center_vertical"
|
2009-11-23 00:23:34 +00:00
|
|
|
android:orientation="vertical">
|
2008-10-28 01:04:44 +00:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_description"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:layout_height="wrap_content"
|
2010-07-08 12:18:12 +00:00
|
|
|
android:layout_width="fill_parent"
|
2012-09-24 16:34:22 +00:00
|
|
|
android:hint="@string/account_setup_names_account_name_label"
|
2010-07-08 12:18:12 +00:00
|
|
|
android:contentDescription="@string/account_setup_names_account_name_label" />
|
2008-10-28 01:04:44 +00:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_name"
|
|
|
|
android:singleLine="true"
|
2010-02-13 18:20:08 +00:00
|
|
|
android:inputType="textPersonName"
|
2008-10-28 01:04:44 +00:00
|
|
|
android:layout_height="wrap_content"
|
2010-07-08 12:18:12 +00:00
|
|
|
android:layout_width="fill_parent"
|
2012-09-24 16:34:22 +00:00
|
|
|
android:hint="@string/account_setup_names_user_name_label"
|
2010-07-08 12:18:12 +00:00
|
|
|
android:contentDescription="@string/account_setup_names_user_name_label" />
|
2008-10-28 01:04:44 +00:00
|
|
|
<View
|
2009-11-13 00:38:26 +00:00
|
|
|
android:layout_height="0dip"
|
2008-10-28 01:04:44 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_weight="1" />
|
2009-11-23 00:23:34 +00:00
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
2013-03-08 02:17:22 +00:00
|
|
|
<include layout="@layout/wizard_done" />
|
2008-10-28 01:04:44 +00:00
|
|
|
</LinearLayout>
|