android-calculatorpp/android-app/res/layout/cpp_wizard.xml

45 lines
967 B
XML
Raw Normal View History

2013-06-16 14:43:19 -04:00
<?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">
2013-06-25 08:17:17 -04:00
<FrameLayout
2013-06-16 14:43:19 -04:00
a:orientation="vertical"
a:id="@+id/wizard_content"
a:layout_width="match_parent"
a:layout_height="0dp"
2013-06-25 05:56:01 -04:00
a:layout_weight="1"
2013-06-25 08:17:17 -04:00
a:gravity="center"/>
2013-06-16 14:43:19 -04:00
<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>