<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/white">

    <TextView
        android:layout_marginTop="100dp"
        android:id="@+id/txtinfosids"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text=""
        android:textAlignment="center"
        android:textColor="@color/app_color"
        android:textSize="18dp"/>



    <ImageView
        android:layout_marginTop="70dp"
        android:id="@+id/Imageprevs"
        android:layout_width="match_parent"
        android:layout_height="350dp" />

    <Button
        android:id="@+id/cpics"
        android:text="Take Pic of Person with their ID"
        android:layout_centerInParent="true"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/customborder"
        android:textColor="@color/white"
        android:layout_below="@+id/Imageprevs" />

    <Button
        android:id="@+id/ups"
        android:layout_marginTop="10dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:text="Upload Image to Application "
        android:layout_below="@+id/cpics"
        android:background="@drawable/customborder"
        android:textColor="@color/white"
        android:layout_centerInParent="true" />
</RelativeLayout>

