mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-01 16:15:08 -04:00
0c16b8cec8
Use the button bar layout from Roman Nurik's WizardPager example: https://code.google.com/p/romannurik-code/source/browse/misc/wizardpager
35 lines
1.1 KiB
XML
35 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<ScrollView
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:fadingEdge="none" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/welcome_message"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:padding="8dip"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:textSize="14sp" />
|
|
|
|
<View
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="0dip"
|
|
android:layout_weight="1" />
|
|
</LinearLayout>
|
|
</ScrollView>
|
|
|
|
<include layout="@layout/wizard_welcome" />
|
|
|
|
</LinearLayout> |