mirror of
https://github.com/moparisthebest/k-9
synced 2025-02-07 10:40:11 -05:00
64 lines
2.3 KiB
XML
64 lines
2.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<ScrollView
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_marginBottom="54dip"
|
|
android:fadingEdge="none" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/welcome_message"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:padding="8dip"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:textSize="14sp" />
|
|
|
|
<View
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="0dip"
|
|
android:layout_weight="1" />
|
|
</LinearLayout>
|
|
</ScrollView>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_marginTop="-45dip"
|
|
android:background="@android:drawable/bottom_bar"
|
|
android:gravity="bottom|right"
|
|
android:padding="0dip" >
|
|
|
|
<Button
|
|
android:id="@+id/import_settings"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_centerVertical="false"
|
|
android:layout_marginBottom="-4dip"
|
|
android:minWidth="@dimen/button_minWidth"
|
|
android:text="@string/settings_import" />
|
|
|
|
<Button
|
|
android:id="@+id/next"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="false"
|
|
android:layout_marginBottom="-4dip"
|
|
android:drawableRight="@drawable/button_indicator_next"
|
|
android:minWidth="@dimen/button_minWidth"
|
|
android:text="@string/next_action" />
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout> |