1<?xml version="1.0" encoding="utf-8"?> 2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:id="@+id/container" 4 android:layout_width="match_parent" 5 android:layout_height="match_parent" > 6 7 <TextView 8 android:id="@+id/loginsuccessful" 9 android:layout_width="wrap_content" 10 android:layout_height="wrap_content" 11 android:layout_centerHorizontal="true" 12 android:layout_marginBottom="93dp" 13 android:text="@string/login_successful" 14 android:textAppearance="?android:attr/textAppearanceLarge" /> 15 16 <TextView 17 android:id="@+id/firstactivityscreen" 18 android:layout_width="wrap_content" 19 android:layout_height="wrap_content" 20 android:layout_alignTop="@+id/loginsuccessful" 21 android:layout_centerHorizontal="true" 22 android:layout_marginTop="35dp" 23 android:text="@string/first_activity_screen" 24 android:textAppearance="?android:attr/textAppearanceLarge" /> 25 26 <Button 27 android:id="@+id/reset" 28 android:layout_width="wrap_content" 29 android:layout_height="wrap_content" 30 android:layout_alignParentBottom="true" 31 android:layout_centerHorizontal="true" 32 android:layout_marginBottom="164dp" 33 android:onClick="sendMessage" 34 android:text="@string/reset" /> 35 36</RelativeLayout>