我有一个出现在两个按钮后面的 ListView。我希望 ListView 填充按钮下方的区域。我已经尝试过此链接中的解决方案: Android Layout with ListView and Buttons and Listview with button below not working proper。但是,它不起作用。您能告诉我如何将 ListView 保持在按钮下方吗?
这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1.0"
>
<ListView
android:id="@+id/listview"
android:layout_width="fill_parent"
android:layout_below="@id/layoutButtons"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:weightSum=".50" />
<LinearLayout
android:id="@+id/layoutButtons"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1.0" >
<Button
android:id="@+id/btnLogout"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".70"
android:text="left" />
<Button
android:id="@+id/btnMessage"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".30"
android:text="right" />
</LinearLayout>
</RelativeLayout>