2013-12-01 15:07:27 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:scrollbars="vertical" >
|
|
|
|
|
|
|
|
<GridLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:columnCount="2"
|
|
|
|
android:padding="10dp"
|
|
|
|
android:useDefaultMargins="true" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_columnSpan="2"
|
2014-11-12 13:35:30 +00:00
|
|
|
android:layout_gravity="start"
|
2013-12-01 15:07:27 +00:00
|
|
|
android:layout_marginBottom="20dp"
|
2014-11-08 16:32:54 +00:00
|
|
|
android:text="@string/setup_account_details"
|
2013-12-01 15:07:27 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
|
|
|
|
|
|
<TextView
|
2014-11-12 13:35:30 +00:00
|
|
|
android:layout_gravity="start"
|
2014-11-08 16:32:54 +00:00
|
|
|
android:text="@string/setup_account_name"
|
2013-12-01 15:07:27 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_name"
|
|
|
|
android:layout_gravity="fill_horizontal"
|
2014-11-08 16:32:54 +00:00
|
|
|
android:hint="@string/setup_account_name_hint"
|
2014-11-12 13:35:30 +00:00
|
|
|
android:inputType="textEmailAddress">
|
|
|
|
<requestFocus />
|
|
|
|
</EditText>
|
2013-12-01 15:07:27 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/account_name_info"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_columnSpan="2"
|
2014-11-12 13:35:30 +00:00
|
|
|
android:layout_gravity="start"
|
2013-12-01 15:07:27 +00:00
|
|
|
android:drawableLeft="@drawable/extra_actions_about"
|
2014-11-12 13:35:30 +00:00
|
|
|
android:drawableStart="@drawable/extra_actions_about"
|
2013-12-01 15:07:27 +00:00
|
|
|
android:drawablePadding="10dp"
|
|
|
|
android:padding="10dp"
|
2014-11-08 16:32:54 +00:00
|
|
|
android:text="@string/setup_account_name_info"
|
2013-12-01 15:07:27 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<Space
|
2014-11-12 13:35:30 +00:00
|
|
|
android:layout_gravity="start|top"
|
2013-12-01 15:07:27 +00:00
|
|
|
android:layout_row="3" />
|
|
|
|
|
|
|
|
</GridLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|