android-calculatorpp/android-app/src/main/res/layout/fragment_wizard.xml

18 lines
477 B
XML
Raw Normal View History

2015-01-28 16:46:39 -05:00
<?xml version="1.0" encoding="utf-8"?>
2015-02-09 10:11:26 -05:00
<LinearLayout style="@style/WizardFragment"
xmlns:a="http://schemas.android.com/apk/res/android"
2015-01-28 16:46:39 -05:00
a:orientation="vertical">
<ScrollView
a:id="@+id/wizard_content"
a:layout_width="match_parent"
a:layout_height="0dp"
a:layout_marginBottom="@dimen/control_margin"
2015-02-09 10:11:26 -05:00
a:layout_marginTop="@dimen/control_margin"
a:layout_weight="1"
a:fillViewport="true" />
2015-01-28 16:46:39 -05:00
<include layout="@layout/fragment_wizard_buttons" />
</LinearLayout>