レイアウトファイルにリストビューとボタンがありますが、リストビューが画面いっぱいに表示されるとボタンが表示されなくなります。誰か教えてください。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ListView
android:id="@+id/myListView"
android:layout_width = "fill_parent"
android:layout_height = "wrap_content"/>
<Button
android:id="@+id/back_button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="20dip"
android:text="@string/backButton_label" />
</LinearLayout>