1<?xml version="1.0" encoding="utf-8"?> 2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:fitsSystemWindows="true" 4 android:orientation="vertical" 5 android:paddingLeft="@dimen/activity_horizontal_margin" 6 android:paddingRight="@dimen/activity_horizontal_margin" 7 android:paddingTop="@dimen/activity_vertical_margin" 8 android:paddingBottom="@dimen/activity_vertical_margin" 9 android:layout_width="match_parent" 10 android:layout_height="match_parent"> 11 12 <TextView 13 android:layout_width="wrap_content" 14 android:layout_height="wrap_content" 15 android:text="@string/phase1_description" 16 android:id="@+id/tvDesc"/> 17 18 <Button 19 android:layout_width="wrap_content" 20 android:layout_height="wrap_content" 21 android:layout_gravity="center_horizontal" 22 android:id="@+id/btnStart" 23 android:text="@string/start"/> 24 25</LinearLayout>