2011-06-28 08:17:19 -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"
|
|
|
|
android:padding="10dp">
|
|
|
|
|
|
|
|
<TextView android:id="@+id/form_label_email"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/account_setup_basics_email_hint"
|
|
|
|
android:layout_marginBottom="10dp"/>
|
|
|
|
|
|
|
|
<EditText android:id="@+id/account_dialog_address_field"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:inputType="textEmailAddress"
|
|
|
|
android:layout_height="wrap_content"
|
2011-07-03 12:29:27 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:hint="someone@example.com"/>
|
2011-06-28 08:17:19 -04:00
|
|
|
|
|
|
|
<TextView android:id="@+id/form_label_password"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/account_setup_basics_password_hint"
|
|
|
|
android:layout_marginBottom="10dp"/>
|
|
|
|
|
|
|
|
<EditText android:id="@+id/account_dialog_password_field"
|
|
|
|
android:inputType="textPassword"
|
|
|
|
android:password="true"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:nextFocusDown="@+id/next"/>
|
|
|
|
|
|
|
|
<CheckBox android:id="@+id/account_dialog_manual_box"
|
|
|
|
android:layout_height="wrap_content"
|
2011-07-03 12:29:27 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:lines="1"
|
2011-06-28 08:17:19 -04:00
|
|
|
android:text="@string/account_setup_basics_manual_setup_action"/>
|
|
|
|
|
|
|
|
<Button android:id="@+id/account_dialog_next"
|
|
|
|
android:text="@string/next_action"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
2011-07-03 12:29:27 -04:00
|
|
|
android:drawableRight="@drawable/button_indicator_next"/>
|
2011-06-28 08:17:19 -04:00
|
|
|
|
|
|
|
</LinearLayout>
|