1 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 android:layout_width="match_parent" 3 android:layout_height="match_parent"> 4 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 5 xmlns:tools="http://schemas.android.com/tools" 6 android:layout_width="match_parent" 7 android:layout_height="match_parent" 8 android:gravity="center_vertical" 9 android:orientation="vertical" > 10 <ImageView 11 android:id="@+id/nfc_payment_tap_image" 12 android:layout_width="fill_parent" 13 android:layout_height="wrap_content" 14 android:gravity="center" 15 android:visibility="gone" 16 android:src="@drawable/nfc_payment_empty_state"/> 17 <TextView 18 android:id="@+id/nfc_payment_empty_text" 19 android:layout_width="fill_parent" 20 android:layout_height="wrap_content" 21 android:gravity="center" 22 android:textSize="24sp" 23 android:visibility="gone" 24 android:paddingTop="16dp" 25 android:text="@string/nfc_payment_no_apps"/> 26 <TextView 27 android:id="@+id/nfc_payment_learn_more" 28 android:layout_width="fill_parent" 29 android:layout_height="wrap_content" 30 android:gravity="center" 31 android:clickable="true" 32 android:textSize="20sp" 33 android:textStyle="italic" 34 android:visibility="gone" 35 android:textColor="@android:color/holo_blue_light" 36 android:paddingTop="16dp" 37 android:text="@string/nfc_payment_learn_more"/> 38 </LinearLayout> 39 <ListView 40 android:id="@android:id/list" 41 android:layout_width="match_parent" 42 android:layout_height="match_parent" 43 android:layout_marginTop="5dp" /> 44 45 </FrameLayout> 46