equal
deleted
inserted
replaced
|
1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
2 xmlns:tools="http://schemas.android.com/tools" |
|
3 android:layout_width="match_parent" |
|
4 android:layout_height="match_parent" > |
|
5 |
|
6 <TextView |
|
7 android:id="@+id/textbox" |
|
8 android:layout_width="wrap_content" |
|
9 android:layout_height="wrap_content" |
|
10 android:layout_alignParentLeft="true" |
|
11 android:layout_alignParentRight="true" |
|
12 android:layout_alignParentBottom="true" |
|
13 android:layout_below="@+id/editText" |
|
14 android:text="" |
|
15 tools:context=".LobbyActivity" /> |
|
16 |
|
17 <EditText |
|
18 android:id="@+id/editText" |
|
19 android:layout_width="wrap_content" |
|
20 android:layout_height="wrap_content" |
|
21 android:layout_alignParentLeft="true" |
|
22 android:layout_alignParentTop="true" |
|
23 android:layout_toLeftOf="@+id/lobbySendButton" |
|
24 android:ems="10" |
|
25 android:inputType="text" /> |
|
26 |
|
27 <Button |
|
28 android:id="@+id/lobbySendButton" |
|
29 android:layout_width="wrap_content" |
|
30 android:layout_height="wrap_content" |
|
31 android:layout_alignParentRight="true" |
|
32 android:layout_alignParentTop="true" |
|
33 android:text="Send" /> |
|
34 |
|
35 </RelativeLayout> |