1<LinearLayout 2 xmlns:android="http://schemas.android.com/apk/res/android" 3 android:gravity="start" 4 android:layout_width="wrap_content" 5 android:layout_height="400dp" 6 android:orientation="vertical" 7 android:paddingTop="24dp" 8 android:paddingStart="24dp" 9 android:paddingEnd="24dp"> 10 <TextView 11 android:layout_width="wrap_content" 12 android:layout_height="wrap_content" 13 android:textAlignment="viewStart" 14 android:paddingBottom="24dp" 15 android:text="@string/summary_confirm_url_open" 16 android:textColor="?android:attr/textColorPrimaryInverse"/> 17 <TextView 18 android:id="@+id/url_open_confirmation_link" 19 android:layout_width="wrap_content" 20 android:layout_height="wrap_content" 21 android:textAlignment="viewStart" 22 android:textColor="?android:attr/colorAccent"/> 23 <FrameLayout 24 android:layout_width="match_parent" 25 android:layout_height="wrap_content" 26 android:paddingTop="24dp" 27 android:paddingBottom="24dp"> 28 <ImageView 29 android:layout_width="wrap_content" 30 android:layout_height="wrap_content" 31 android:layout_gravity="center" 32 android:src="@drawable/ic_weblink_nfc"/> 33 </FrameLayout> 34 35</LinearLayout> 36