mirror of
https://github.com/moparisthebest/k-9
synced 2024-10-31 23:55:08 -04:00
b188630eb4
Fixes issue 1948
77 lines
3.0 KiB
XML
77 lines
3.0 KiB
XML
<?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">
|
|
|
|
<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_names_instructions"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="fill_parent"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:focusable="true" />
|
|
<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"
|
|
android:layout_width="fill_parent"
|
|
android:contentDescription="@string/account_setup_names_account_name_label" />
|
|
<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"
|
|
android:inputType="textPersonName"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="fill_parent"
|
|
android:contentDescription="@string/account_setup_names_user_name_label" />
|
|
<View
|
|
android:layout_height="0dip"
|
|
android:layout_width="fill_parent"
|
|
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/done"
|
|
android:text="@string/done_action"
|
|
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>
|