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 <Button 8 android:id="@+id/okay" 9 android:layout_width="wrap_content" 10 android:layout_height="wrap_content" 11 android:layout_alignParentBottom="true" 12 android:layout_centerHorizontal="true" 13 android:layout_marginBottom="164dp" 14 android:onClick="sendMessage" 15 android:text="@string/okay" /> 16 17 <TextView 18 android:id="@+id/usernametaken" 19 android:layout_width="wrap_content" 20 android:layout_height="wrap_content" 21 android:layout_above="@+id/okay" 22 android:layout_centerHorizontal="true" 23 android:layout_marginBottom="93dp" 24 android:text="@string/username_taken" 25 android:textAppearance="?android:attr/textAppearanceLarge" /> 26 27 <TextView 28 android:id="@+id/textView2" 29 android:layout_width="wrap_content" 30 android:layout_height="wrap_content" 31 android:layout_alignTop="@+id/usernametaken" 32 android:layout_centerHorizontal="true" 33 android:layout_marginTop="35dp" 34 android:text="@string/try_again" 35 android:textAppearance="?android:attr/textAppearanceLarge" /> 36 37</RelativeLayout>