mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-01 08:05:08 -04:00
28 lines
1.0 KiB
XML
28 lines
1.0 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<merge xmlns:android="http://schemas.android.com/apk/res/android" >
|
||
|
|
||
|
<RelativeLayout
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="@android:drawable/bottom_bar"
|
||
|
android:gravity="bottom|right" >
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/manual_setup"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_alignParentLeft="true"
|
||
|
android:minWidth="@dimen/button_minWidth"
|
||
|
android:text="@string/account_setup_basics_manual_setup_action" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/next"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_alignParentRight="true"
|
||
|
android:drawableRight="@drawable/button_indicator_next"
|
||
|
android:minWidth="@dimen/button_minWidth"
|
||
|
android:text="@string/next_action" />
|
||
|
</RelativeLayout>
|
||
|
|
||
|
</merge>
|