我试图在 ListActivity 的底部放置一个按钮。以下内容在 Eclipse 设计器中完美运行,但在我启动手机或 AVD 的应用程序时却不行。
有任何想法吗?
<?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/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@+id/btn_New" >
</ListView>
<Button
android:id="@+id/btn_New"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="Button"
android:layout_alignParentBottom="true" />
</RelativeLayout>
按钮在设计器中正确显示
按钮未出现在我的手机或 AVD 上