<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:onClick="screenTapped"
    android:layout_width="match_parent"
    android:gravity="center"
    android:orientation="vertical" 
    android:layout_height="match_parent" >

    <TextView  
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:gravity="center"
        android:textSize="12dp"
        android:text="Your random number is"
        />

    <TextView  
        android:id="@+id/text_container"
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" 
        android:gravity="center"
        android:textSize="32dp"
        android:text="123456789"
        />

</LinearLayout>
