我有一个具有自定义布局的 listFragment,由以下 XML 定义。但是,该按钮完全被列表片段隐藏。XML 有什么问题?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ListView android:id="@id/android:list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:drawSelectorOnTop="false"
/>
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/android:list"
android:text="Button" />
</RelativeLayout>
我尝试将列表视图的 layout_height 从更改为match_parent
,0dp
但随后listView
变为隐藏,只有按钮可见。