<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:id="@+id/confirmation_layout_base"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="?attr/netverify_confirmationBackground">
	<TextView
		android:id="@+id/confirmationSnackBar"
		android:layout_width="match_parent"
		android:layout_height="wrap_content"
		android:paddingTop="16dp"
		android:paddingBottom="16dp"
		android:paddingLeft="16dp"
		android:paddingRight="16dp"
		android:gravity="center_vertical"
		android:layout_above="@+id/buttonLayout"
		android:text="@string/netverify_confirmation_snackbar_help_default"
		style="?attr/netverify_confirmationHintStyle"/>
	<LinearLayout
		android:id="@+id/buttonLayout"
		android:layout_width="match_parent"
		android:layout_height="wrap_content"
		android:layout_alignParentBottom="true">
		<TextView
			android:id="@+id/confirmationNegativeTextView"
			android:layout_width="0dp"
			android:layout_height="56dp"
			android:layout_weight="0.5"
			android:gravity="center"
			android:text="RETAKE"
			android:filterTouchesWhenObscured="true"
			style="?attr/netverify_confirmationNegativeStyle"/>
		<TextView
			android:id="@+id/confirmationPositiveTextView"
			android:layout_width="0dp"
			android:layout_height="56dp"
			android:layout_weight="0.5"
			android:gravity="center"
			android:text="IMAGE IS FINE"
			android:filterTouchesWhenObscured="true"
			style="?attr/netverify_confirmationPositiveStyle"/>
	</LinearLayout>
	<com.jumio.commons.view.ScaleableImageView
		android:id="@+id/confirmationImage"
		android:layout_width="match_parent"
		android:layout_height="wrap_content"
		android:layout_alignParentTop="true"
		android:adjustViewBounds="true"
		android:layout_marginLeft="16dp"
		android:layout_marginRight="16dp"
		android:layout_above="@id/confirmationSnackBar"/>
</RelativeLayout>