1 <?xml version="1.0" encoding="utf-8"?> 2 3 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 4 android:layout_width="match_parent" 5 android:layout_height="match_parent" 6 android:orientation="vertical" 7 > 8 9 <ImageView android:layout_width="match_parent" 10 android:layout_height="0dp" 11 android:orientation="vertical" 12 android:layout_weight="1" 13 android:src="@drawable/page_hed" 14 android:onClick="dismiss" 15 /> 16 17 <Button 18 android:layout_width="match_parent" 19 android:layout_height="wrap_content" 20 android:layout_gravity="bottom" 21 android:text="@string/hang_up_button_label" 22 android:onClick="dismiss" 23 android:layout_weight="0" 24 /> 25 26 </LinearLayout>