<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
? ? xmlns:app="http://schemas.android.com/apk/res-auto"
? ? xmlns:tools="http://schemas.android.com/tools"
? ? android:layout_width="match_parent"
? ? android:layout_height="match_parent"
? ? android:orientation="horizontal"
? ? tools:context=".one">
? ? <Button
? ? ? ? android:id="@+id/but01"
? ? ? ? android:layout_width="wrap_content"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:layout_gravity="top"
? ? ? ? android:text="按钮1"/>
? ? <Button
? ? ? ? android:id="@+id/but02"
? ? ? ? android:layout_width="wrap_content"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:layout_gravity="center_vertical"
? ? ? ? android:text="按钮2"/>
? ? <Button
? ? ? ? android:id="@+id/but03"
? ? ? ? android:layout_width="wrap_content"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:layout_gravity="bottom"
? ? ? ? android:text="发送"
? ? ? ? />
</LinearLayout>
? ? <EditText
? ? ? ? android:id="@+id/text01"
? ? ? ? android:layout_width="0dp"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:layout_weight="1"
? ? ? ? android:hint="请输入消息"/>
? ? <Button
? ? ? ? android:id="@+id/but03"
? ? ? ? android:layout_width="wrap_content"
? ? ? ? android:layout_height="wrap_content"
? ? ? ? android:text="发送"
? ? ? ? />