我想ListView
在我的活动顶部放一个,在底部放一些其他的东西而不ListView
“吞下”底部的小部件?我试过这个(“其他东西”是一个RelativeLayout
带有一个按钮的),但它不起作用。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom" >
</ListView>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_gravity="bottom" >
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:text="Button" />
</RelativeLayout>
</LinearLayout>
我在这里寻找了一些提示,非常有用,但没有说任何关于ListView
s 的内容。我可以ListView
毫无问题地将小部件放在 a 上方,但不能放在下方。