我在布局文件中有一个列表视图和一个按钮,看起来不错,但是如果列表视图填满屏幕,按钮就会丢失,请有人告诉我。
<?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>