mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-10 19:45:05 -05:00
60 lines
2.2 KiB
XML
60 lines
2.2 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:layout_gravity="center_horizontal|center_vertical"
|
|
android:orientation="vertical">
|
|
<EditText
|
|
android:id="@+id/account_description"
|
|
android:singleLine="true"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="fill_parent"
|
|
android:hint="@string/account_setup_names_account_name_label"
|
|
android:contentDescription="@string/account_setup_names_account_name_label" />
|
|
<EditText
|
|
android:id="@+id/account_name"
|
|
android:singleLine="true"
|
|
android:inputType="textPersonName"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="fill_parent"
|
|
android:hint="@string/account_setup_names_user_name_label"
|
|
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:layout_marginBottom="-4dip"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="false"
|
|
/>
|
|
</RelativeLayout>
|
|
</LinearLayout>
|