2008-10-27 21:04:44 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-11-13 18:42:52 -05:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
2009-11-22 19:23:34 -05:00
|
|
|
android:layout_height="fill_parent"
|
2009-11-13 18:42:52 -05:00
|
|
|
android:layout_width="fill_parent">
|
2008-10-27 21:04:44 -04:00
|
|
|
<ListView
|
|
|
|
android:id="@android:id/list"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
/>
|
2009-11-16 19:50:59 -05:00
|
|
|
<LinearLayout
|
2009-11-13 23:48:39 -05:00
|
|
|
android:id="@+id/empty"
|
2009-11-16 19:50:59 -05:00
|
|
|
android:orientation="vertical"
|
2010-12-12 19:17:35 -05:00
|
|
|
android:layout_height="fill_parent"
|
2009-11-16 19:50:59 -05:00
|
|
|
android:layout_width="fill_parent">
|
2008-12-14 23:59:03 -05:00
|
|
|
<ScrollView
|
2009-11-13 23:49:27 -05:00
|
|
|
android:layout_marginBottom="54dip"
|
2010-12-12 19:17:35 -05:00
|
|
|
android:layout_height="fill_parent"
|
2009-11-16 19:50:59 -05:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:fadingEdge="none"
|
|
|
|
>
|
2008-12-14 23:59:03 -05:00
|
|
|
<LinearLayout
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_width="fill_parent"
|
2008-12-14 23:59:03 -05:00
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
|
|
android:layout_width="fill_parent"
|
2010-12-12 19:17:35 -05:00
|
|
|
android:layout_height="fill_parent"
|
2008-12-14 23:59:03 -05:00
|
|
|
android:textSize="14sp"
|
|
|
|
android:text="@string/accounts_welcome"
|
2009-04-19 05:10:32 -04:00
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
2009-11-13 18:42:52 -05:00
|
|
|
android:padding="8dip"/>
|
2008-12-14 23:59:03 -05:00
|
|
|
<View
|
|
|
|
android:layout_width="fill_parent"
|
2009-11-12 19:38:26 -05:00
|
|
|
android:layout_height="0dip"
|
2008-12-14 23:59:03 -05:00
|
|
|
android:layout_weight="1" />
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
2009-11-22 19:23:34 -05:00
|
|
|
<include layout="@layout/wizard_next" />
|
2009-11-13 18:42:52 -05:00
|
|
|
</LinearLayout>
|
2009-11-13 23:48:39 -05:00
|
|
|
</LinearLayout>
|