OLD | NEW |
(Empty) | |
| 1 <LinearLayout 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 android:orientation="horizontal" > |
| 6 <EditText android:id="@+id/edit_message" |
| 7 android:layout_width="0dp" |
| 8 android:layout_weight="1" |
| 9 android:layout_height="wrap_content" |
| 10 android:hint="@string/edit_message" /> |
| 11 <Button |
| 12 android:layout_width="wrap_content" |
| 13 android:layout_height="wrap_content" |
| 14 android:text="@string/button_send" /> |
| 15 </LinearLayout> |
OLD | NEW |