Calculator-in-a-window wizard step

This commit is contained in:
serso
2015-01-29 20:31:28 +01:00
parent e0eabca868
commit 3d358b60bf
7 changed files with 30 additions and 24 deletions

View File

@@ -33,21 +33,18 @@
a:layout_height="wrap_content"
a:textAppearance="@android:style/TextAppearance.Large"
style="@style/WizardLabel"
a:text="Choose mode"
a:layout_marginBottom="40dp" />
a:text="Choose mode"/>
<Spinner
a:id="@+id/wizard_mode_spinner"
a:layout_width="wrap_content"
a:layout_height="wrap_content"
style="@style/WizardLabel"
a:layout_marginBottom="40dp" />
style="@style/WizardLabel"/>
<TextView
a:id="@+id/wizard_mode_description"
a:layout_width="wrap_content"
a:layout_height="wrap_content"
style="@style/WizardLabel"
a:text="Choose mode" />
style="@style/WizardLabel"/>
</LinearLayout>

View File

@@ -23,19 +23,23 @@
-->
<LinearLayout xmlns:a="http://schemas.android.com/apk/res/android"
a:layout_width="match_parent"
a:layout_height="match_parent"
a:orientation="vertical">
a:layout_width="match_parent"
a:layout_height="match_parent"
a:gravity="center"
a:orientation="vertical">
<TextView
a:text="@string/cpp_wizard_onscreen_description"
a:layout_height="wrap_content"
a:layout_width="match_parent"/>
a:drawableTop="@drawable/logo_wizard_window"
a:text="@string/cpp_wizard_onscreen_description"
a:layout_height="wrap_content"
a:layout_width="wrap_content"
style="@style/WizardLabel" />
<CheckBox
a:id="@+id/wizard_onscreen_app_enabled_checkbox"
a:layout_height="wrap_content"
a:layout_width="match_parent"
a:text="@string/cpp_wizard_onscreen_checkbox"/>
a:id="@+id/wizard_onscreen_app_enabled_checkbox"
a:layout_height="wrap_content"
a:layout_width="wrap_content"
a:text="@string/cpp_wizard_onscreen_checkbox"
style="@style/WizardLabel" />
</LinearLayout>