OLD | NEW |
(Empty) | |
| 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 android:orientation="vertical" |
| 4 android:layout_width="fill_parent" |
| 5 android:layout_height="fill_parent" |
| 6 > |
| 7 <EditText android:id="@+id/edit_message" |
| 8 android:layout_width="match_parent" |
| 9 android:layout_height="wrap_content" |
| 10 /> |
| 11 <Button |
| 12 android:layout_width="wrap_content" |
| 13 android:layout_height="wrap_content" |
| 14 android:onClick="sendMessage" |
| 15 android:text="Send" /> |
| 16 <TextView android:id="@+id/output" |
| 17 android:layout_weight="1" |
| 18 android:layout_width="fill_parent" |
| 19 android:layout_height="fill_parent" |
| 20 android:hint="Result will show up here..." |
| 21 /> |
| 22 </LinearLayout> |
| 23 |
OLD | NEW |