2008-10-27 21:04:44 -04: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-22 19:23:34 -05:00
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_marginBottom="54dip"
|
|
|
|
android:padding="6dip"
|
|
|
|
android:fadingEdge="none"
|
|
|
|
android:scrollbarStyle="outsideInset">
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
2008-10-27 21:04:44 -04:00
|
|
|
<TextView
|
|
|
|
android:text="@string/account_setup_names_instructions"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
2010-07-08 08:18:12 -04:00
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
android:focusable="true" />
|
2008-10-27 21:04:44 -04:00
|
|
|
<TextView
|
|
|
|
android:text="@string/account_setup_names_account_name_label"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorPrimary" />
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_description"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:layout_height="wrap_content"
|
2010-07-08 08:18:12 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:contentDescription="@string/account_setup_names_account_name_label" />
|
2008-10-27 21:04:44 -04:00
|
|
|
<TextView
|
|
|
|
android:text="@string/account_setup_names_user_name_label"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorPrimary" />
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_name"
|
|
|
|
android:singleLine="true"
|
2010-02-13 13:20:08 -05:00
|
|
|
android:inputType="textPersonName"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_height="wrap_content"
|
2010-07-08 08:18:12 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:contentDescription="@string/account_setup_names_user_name_label" />
|
2008-10-27 21:04:44 -04:00
|
|
|
<View
|
2009-11-12 19:38:26 -05:00
|
|
|
android:layout_height="0dip"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_weight="1" />
|
2009-11-22 19:23:34 -05:00
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
2008-10-27 21:04:44 -04:00
|
|
|
<RelativeLayout
|
2009-11-22 19:23:34 -05:00
|
|
|
android:layout_marginTop="-45dip"
|
|
|
|
android:padding="0dip"
|
|
|
|
android:layout_alignParentBottom="true"
|
2009-11-13 23:49:27 -05:00
|
|
|
android:gravity="bottom|right"
|
2009-11-22 19:23:34 -05:00
|
|
|
android:background="@android:drawable/bottom_bar"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_width="fill_parent">
|
2008-10-27 21:04:44 -04:00
|
|
|
<Button
|
|
|
|
android:id="@+id/done"
|
|
|
|
android:text="@string/done_action"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
2009-11-22 19:23:34 -05:00
|
|
|
android:drawableRight="@drawable/button_indicator_next"
|
|
|
|
android:layout_marginBottom="-4dip"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_alignParentRight="true"
|
2009-11-22 19:23:34 -05:00
|
|
|
android:layout_centerVertical="false"
|
|
|
|
/>
|
2008-10-27 21:04:44 -04:00
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|