| Index: apk/res/layout/activity_my.xml
|
| diff --git a/apk/res/layout/activity_my.xml b/apk/res/layout/activity_my.xml
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9a0ec0321499d42558875ee04a26d59f31298dbb
|
| --- /dev/null
|
| +++ b/apk/res/layout/activity_my.xml
|
| @@ -0,0 +1,15 @@
|
| +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
| + xmlns:tools="http://schemas.android.com/tools"
|
| + android:layout_width="match_parent"
|
| + android:layout_height="match_parent"
|
| + android:orientation="horizontal" >
|
| + <EditText android:id="@+id/edit_message"
|
| + android:layout_width="0dp"
|
| + android:layout_weight="1"
|
| + android:layout_height="wrap_content"
|
| + android:hint="@string/edit_message" />
|
| + <Button
|
| + android:layout_width="wrap_content"
|
| + android:layout_height="wrap_content"
|
| + android:text="@string/button_send" />
|
| +</LinearLayout>
|
|
|