2012-08-24 10:29:17 -04:00
|
|
|
<?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"
|
2013-03-07 21:17:22 -05:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"
|
2012-08-24 10:29:17 -04:00
|
|
|
android:fadingEdge="none" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<TextView
|
2012-12-17 06:41:12 -05:00
|
|
|
android:id="@+id/welcome_message"
|
2012-08-24 10:29:17 -04:00
|
|
|
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>
|
|
|
|
|
2013-03-07 21:17:22 -05:00
|
|
|
<include layout="@layout/wizard_welcome" />
|
2012-08-24 10:29:17 -04:00
|
|
|
|
|
|
|
</LinearLayout>
|