1 <?xml version="1.0" encoding="utf-8"?> 2 <RelativeLayout 3 xmlns:android="http://schemas.android.com/apk/res/android" 4 android:orientation="vertical" 5 android:layout_width="fill_parent" 6 android:layout_height="fill_parent" 7 android:padding="2dip"> 8 <ListView 9 android:id="@+id/list" 10 android:layout_width="fill_parent" 11 android:layout_height="wrap_content" 12 android:divider="#00000000" /> 13 <Button 14 android:id="@+id/done" 15 android:layout_width="fill_parent" 16 android:layout_height="wrap_content" 17 android:text="@string/prompt_finish" 18 android:layout_alignParentBottom="true" /> 19 </RelativeLayout> 20