メッセージエリアのテンプレート(Android Studio)

f:id:eigenvalue:20190821202957p:plain
メッセージエリア

上記のような簡単なメッセージエリアです。
色等デザインは好きにアレンジしてください。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:gravity="bottom"
              android:orientation="horizontal">

    <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:hint="@string/hint"
            android:id="@+id/message"
            android:maxHeight="80dp"
    />

    <ImageView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="4"
            android:padding="4dp"
            android:src="@android:drawable/ic_menu_send"
            android:id="@+id/sendBtn"/>
</LinearLayout>