1*5eae8ebbSCole Faust<?xml version="1.0" encoding="utf-8"?> 2*5eae8ebbSCole Faust<FrameLayout 3*5eae8ebbSCole Faust android:layout_width="fill_parent" 4*5eae8ebbSCole Faust android:layout_height="fill_parent" 5*5eae8ebbSCole Faust xmlns:android="http://schemas.android.com/apk/res/android"> 6*5eae8ebbSCole Faust <ImageView 7*5eae8ebbSCole Faust android:id="@+id/mainMenuBackground" 8*5eae8ebbSCole Faust android:src="@drawable/title_background" 9*5eae8ebbSCole Faust android:adjustViewBounds="true" 10*5eae8ebbSCole Faust android:gravity="center_vertical" 11*5eae8ebbSCole Faust android:scaleType="fitXY" 12*5eae8ebbSCole Faust android:layout_width="fill_parent" 13*5eae8ebbSCole Faust android:layout_height="fill_parent"/> 14*5eae8ebbSCole Faust 15*5eae8ebbSCole Faust <LinearLayout 16*5eae8ebbSCole Faust android:background="@drawable/custom_toast_border" 17*5eae8ebbSCole Faust android:layout_width="wrap_content" 18*5eae8ebbSCole Faust android:layout_height="wrap_content" 19*5eae8ebbSCole Faust android:orientation="vertical" 20*5eae8ebbSCole Faust android:layout_gravity="center" 21*5eae8ebbSCole Faust android:padding="10dp"> 22*5eae8ebbSCole Faust 23*5eae8ebbSCole Faust <ImageView 24*5eae8ebbSCole Faust android:id="@+id/babyButton" 25*5eae8ebbSCole Faust android:src="@drawable/ui_button_baby" 26*5eae8ebbSCole Faust android:layout_width="wrap_content" 27*5eae8ebbSCole Faust android:layout_height="wrap_content" 28*5eae8ebbSCole Faust android:layout_gravity="center_horizontal" 29*5eae8ebbSCole Faust android:clickable="true" /> 30*5eae8ebbSCole Faust 31*5eae8ebbSCole Faust <TextView 32*5eae8ebbSCole Faust android:layout_width="wrap_content" 33*5eae8ebbSCole Faust android:layout_height="wrap_content" 34*5eae8ebbSCole Faust android:textColor= "#FFFFFF" 35*5eae8ebbSCole Faust android:textSize="14sp" 36*5eae8ebbSCole Faust android:focusable="false" 37*5eae8ebbSCole Faust android:layout_gravity="center_horizontal" 38*5eae8ebbSCole Faust android:text="@string/baby_description" 39*5eae8ebbSCole Faust android:id="@+id/babyText"/> 40*5eae8ebbSCole Faust 41*5eae8ebbSCole Faust <ImageView 42*5eae8ebbSCole Faust android:id="@+id/kidsButton" 43*5eae8ebbSCole Faust android:src="@drawable/ui_button_kids" 44*5eae8ebbSCole Faust android:layout_width="wrap_content" 45*5eae8ebbSCole Faust android:layout_height="wrap_content" 46*5eae8ebbSCole Faust android:layout_gravity="center_horizontal" 47*5eae8ebbSCole Faust android:clickable="true" 48*5eae8ebbSCole Faust android:layout_marginTop="15dp"/> 49*5eae8ebbSCole Faust 50*5eae8ebbSCole Faust <TextView 51*5eae8ebbSCole Faust android:layout_width="wrap_content" 52*5eae8ebbSCole Faust android:layout_height="wrap_content" 53*5eae8ebbSCole Faust android:textColor= "#FFFFFF" 54*5eae8ebbSCole Faust android:textSize="14sp" 55*5eae8ebbSCole Faust android:focusable="false" 56*5eae8ebbSCole Faust android:layout_gravity="center_horizontal" 57*5eae8ebbSCole Faust android:text="@string/kids_description" 58*5eae8ebbSCole Faust android:id="@+id/kidsText"/> 59*5eae8ebbSCole Faust 60*5eae8ebbSCole Faust <ImageView 61*5eae8ebbSCole Faust android:id="@+id/adultsButton" 62*5eae8ebbSCole Faust android:src="@drawable/ui_button_adults" 63*5eae8ebbSCole Faust android:layout_width="wrap_content" 64*5eae8ebbSCole Faust android:layout_height="wrap_content" 65*5eae8ebbSCole Faust android:layout_gravity="center_horizontal" 66*5eae8ebbSCole Faust android:clickable="true" 67*5eae8ebbSCole Faust android:layout_marginTop="15dp"/> 68*5eae8ebbSCole Faust 69*5eae8ebbSCole Faust <TextView 70*5eae8ebbSCole Faust android:layout_width="wrap_content" 71*5eae8ebbSCole Faust android:layout_height="wrap_content" 72*5eae8ebbSCole Faust android:textColor= "#FFFFFF" 73*5eae8ebbSCole Faust android:textSize="14sp" 74*5eae8ebbSCole Faust android:focusable="false" 75*5eae8ebbSCole Faust android:layout_gravity="center_horizontal" 76*5eae8ebbSCole Faust android:text="@string/adults_description" 77*5eae8ebbSCole Faust android:id="@+id/adultsText"/> 78*5eae8ebbSCole Faust 79*5eae8ebbSCole Faust </LinearLayout> 80*5eae8ebbSCole Faust</FrameLayout>