mirror of
https://github.com/moparisthebest/k-9
synced 2024-10-31 15:45:08 -04:00
b188630eb4
Fixes issue 1948
90 lines
3.3 KiB
XML
90 lines
3.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_height="fill_parent"
|
|
android:layout_width="fill_parent">
|
|
|
|
<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">
|
|
<TextView
|
|
android:text="@string/account_setup_basics_instructions"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="fill_parent"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:paddingBottom="10dip"
|
|
android:focusable="true"
|
|
/>
|
|
<EditText
|
|
android:id="@+id/account_email"
|
|
android:hint="@string/account_setup_basics_email_hint"
|
|
android:singleLine="true"
|
|
android:inputType="textEmailAddress"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="fill_parent"
|
|
/>
|
|
<EditText
|
|
android:id="@+id/account_password"
|
|
android:inputType="textPassword"
|
|
android:hint="@string/account_setup_basics_password_hint"
|
|
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_default"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="fill_parent"
|
|
android:text="@string/account_setup_basics_default_label"
|
|
android:visibility="gone"
|
|
/>
|
|
<View
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="0dip"
|
|
android:layout_weight="1"
|
|
/>
|
|
</LinearLayout>
|
|
</ScrollView>
|
|
<RelativeLayout
|
|
android:layout_marginTop="-45dip"
|
|
android:padding="0dip"
|
|
android:layout_alignParentBottom="true"
|
|
android:gravity="bottom|right"
|
|
android:background="@android:drawable/bottom_bar"
|
|
android:layout_height="fill_parent"
|
|
android:layout_width="fill_parent">
|
|
<Button
|
|
android:id="@+id/manual_setup"
|
|
android:text="@string/account_setup_basics_manual_setup_action"
|
|
android:minWidth="@dimen/button_minWidth"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_marginBottom="-4dip"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_centerVertical="false"
|
|
/>
|
|
<Button
|
|
android:id="@+id/next"
|
|
android:text="@string/next_action"
|
|
android:minWidth="@dimen/button_minWidth"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:drawableRight="@drawable/button_indicator_next"
|
|
android:layout_marginBottom="-4dip"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="false"
|
|
/>
|
|
</RelativeLayout>
|
|
</LinearLayout>
|