<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/bkgrndclr">
<Button
android="@+id/imgbtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Search Images"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true" />
<Button
android="@id/imgbtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Search Web"
android:layout_alignBottom="@id/imgbtn"
android:layout_toLeftOf="@id/imgbtn" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@id/imgbtn"
android:layout_alignRight="@id/imgbtn" />
</LinearLayout>
我将按钮设置在视图的底部和它们上方的文本框,但为什么所有按钮都是线性显示的。首先显示按钮搜索图像,然后是搜索网络,然后是文本框,它们不在底部,这不是我想要的。