44 lines
947 B
XML
44 lines
947 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
|
|
a:id="@+id/wizard_layout"
|
|
style="?cpp_dialog_style"
|
|
a:orientation="vertical">
|
|
|
|
<FrameLayout
|
|
a:orientation="vertical"
|
|
a:id="@+id/wizard_content"
|
|
a:layout_width="match_parent"
|
|
a:layout_height="0dp"
|
|
a:layout_weight="1" />
|
|
|
|
<LinearLayout
|
|
a:orientation="horizontal"
|
|
a:layout_width="match_parent"
|
|
a:layout_height="wrap_content">
|
|
|
|
<Button
|
|
a:id="@+id/wizard_prev_button"
|
|
a:layout_height="wrap_content"
|
|
a:layout_width="0dp"
|
|
a:layout_weight="1"
|
|
a:text="Prev"/>
|
|
|
|
<Button
|
|
a:id="@+id/wizard_next_button"
|
|
a:layout_height="wrap_content"
|
|
a:layout_width="0dp"
|
|
a:layout_weight="1"
|
|
a:text="Next"/>
|
|
|
|
<Button
|
|
a:id="@+id/wizard_finish_button"
|
|
a:layout_height="wrap_content"
|
|
a:layout_width="0dp"
|
|
a:layout_weight="1"
|
|
a:visibility="gone"
|
|
a:text="Finish"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |