wizard added
This commit is contained in:
44
android-app/res/layout/cpp_wizard.xml
Normal file
44
android-app/res/layout/cpp_wizard.xml
Normal file
@@ -0,0 +1,44 @@
|
||||
<?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>
|
18
android-app/res/layout/cpp_wizard_step_choose_mode.xml
Normal file
18
android-app/res/layout/cpp_wizard_step_choose_mode.xml
Normal file
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
|
||||
a:layout_width="match_parent"
|
||||
a:layout_height="match_parent"
|
||||
a:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
a:text="Choose layout"
|
||||
a:layout_height="wrap_content"
|
||||
a:layout_width="match_parent" />
|
||||
|
||||
<Spinner
|
||||
a:id="@+id/wizard_mode_spinner"
|
||||
a:layout_height="wrap_content"
|
||||
a:layout_width="match_parent" />
|
||||
|
||||
</LinearLayout>
|
8
android-app/res/layout/cpp_wizard_step_welcome.xml
Normal file
8
android-app/res/layout/cpp_wizard_step_welcome.xml
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<TextView
|
||||
xmlns:a="http://schemas.android.com/apk/res/android"
|
||||
a:layout_width="match_parent"
|
||||
a:layout_height="match_parent"
|
||||
a:text="@string/c_first_start_text"
|
||||
/>
|
Reference in New Issue
Block a user