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 にボタンが表示されない