我知道这可以通过使用相对布局很容易地完成,但我觉得我所做的是正确的,并且应该使用线性布局本身给我想要的结果。但由于某种原因,当我在运行 Android JB 4.1.2 的 Google Nexus 7 上运行此工具时,我会在列表视图项之后立即看到按钮和文本视图。如果列表视图为空,我会在屏幕顶部看到它们。难道我做错了什么??这是我的xml文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/attachments_list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:weightSum="1"
android:orientation="vertical">
<ListView
android:id="@+id/mtg_attachments"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1" />
<Button
android:id="@+id/attach_delete"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/delete"
android:textSize="22sp" />
<TextView
android:text="@string/attach_warning"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="18sp" />
</LinearLayout>