summaryrefslogtreecommitdiffstats
path: root/res/layout/account_setup_basics_fragment.xml
diff options
context:
space:
mode:
authorTony Mantler <nicoya@google.com>2014-03-21 13:29:23 -0700
committerTony Mantler <nicoya@google.com>2014-03-21 13:29:23 -0700
commit20adb68b943e74451dfb6330586af6f8356e5e2c (patch)
tree6b00be5f2550ee6469c3ef55e0668e53dcf94aad /res/layout/account_setup_basics_fragment.xml
parenteba80c114e87346aeb64bbff91ef11b0ba566fd6 (diff)
downloadandroid_packages_apps_Email-20adb68b943e74451dfb6330586af6f8356e5e2c.tar.gz
android_packages_apps_Email-20adb68b943e74451dfb6330586af6f8356e5e2c.tar.bz2
android_packages_apps_Email-20adb68b943e74451dfb6330586af6f8356e5e2c.zip
Begin fixing layouts for account setup flows
Also address some RTL issues b/10784160 b/13544189 b/13585832 Change-Id: I5c86497940ce4b972e0ee9189418f120391a8833
Diffstat (limited to 'res/layout/account_setup_basics_fragment.xml')
-rw-r--r--res/layout/account_setup_basics_fragment.xml22
1 files changed, 7 insertions, 15 deletions
diff --git a/res/layout/account_setup_basics_fragment.xml b/res/layout/account_setup_basics_fragment.xml
index a29e5afd0..5e8bdd8d9 100644
--- a/res/layout/account_setup_basics_fragment.xml
+++ b/res/layout/account_setup_basics_fragment.xml
@@ -16,36 +16,28 @@
<!-- Common data-entry area of initial account setup screen - email, password, default check -->
<!-- small screen version -->
-<RelativeLayout
+<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:paddingLeft="@dimen/setup_item_inset_left"
- android:paddingRight="@dimen/setup_item_inset_right"
>
<TextView
android:id="@+id/instructions"
- android:layout_alignParentTop="true"
- android:layout_alignParentLeft="true"
- android:layout_width="match_parent"
+ android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_marginTop="10dip"
- android:textSize="20sp"
android:text="@string/accounts_welcome"
- android:textAppearance="@style/accountSetupInfoText" />
+ android:textAppearance="@style/account_setup_info_text" />
<EditText
android:id="@+id/account_email"
android:hint="@string/account_setup_basics_email_label"
- android:inputType="textEmailAddress"
- android:imeOptions="actionNext"
- android:layout_below="@+id/instructions"
+ android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:layout_width="match_parent" />
+ android:inputType="textEmailAddress" />
<CheckBox
android:id="@+id/manual_setup"
- android:layout_below="@+id/account_email"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/account_setup_basics_manual_setup_action" />
-</RelativeLayout>
+</LinearLayout>