<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:orientation="vertical"
tools:context=".MainActivity">
<TextView
android:text="@string/hello_world"
android:layout_weight="0"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dp"
android:orientation="horizontal"
android:gravity="bottom|center"
android:layout_weight="1">
<EditText
android:minWidth="280dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="请输入内容"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="发送"/>
</LinearLayout>
</LinearLayout>
注意:使用LinearLayout布局时不要忘了设置控件的排序方式哦
android:orientation 这个属性不设置会报错哦
二、RelativeLayout布局中
这种布局方式比较灵活,设置起来也方便,只需要在控件中添加
android:alignParentBottom
这个属性即可让控件位于屏幕下方。