0

次の XML で定義されたカスタム レイアウトを持つ listFragment があります。ただし、ボタンはリスト フラグメントによって完全に隠されています。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非表示になり、ボタンだけが表示されます。

4

2 に答える 2