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"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
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"
|
|
|
|
/>
|
2008-12-14 23:59:03 -05:00
|
|
|
<ScrollView
|
2009-11-13 18:42:52 -05:00
|
|
|
android:layout_marginBottom="50dip"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent">
|
2008-12-14 23:59:03 -05:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/empty"
|
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"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_height="wrap_content"
|
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-13 18:42:52 -05:00
|
|
|
<RelativeLayout
|
2009-11-13 19:14:18 -05:00
|
|
|
android:layout_marginTop="-54dip"
|
|
|
|
android:gravity="bottom|right"
|
2009-11-13 18:42:52 -05:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent">
|
|
|
|
<Button
|
|
|
|
android:id="@+id/add_new_account"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:minWidth="@dimen/button_minWidth"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/next_action"
|
|
|
|
android:drawableRight="@drawable/button_indicator_next"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="false"
|
|
|
|
/>
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|