28 lines
960 B
XML
28 lines
960 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
>
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="5dp"
|
|
android:gravity="center"
|
|
>
|
|
<EditText android:id="@+id/edit_text_out"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_gravity="bottom"
|
|
android:hint="@string/hint"
|
|
/>
|
|
<Button android:id="@+id/button_send"
|
|
android:layout_width="100dip"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/send"
|
|
/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|