マイボタンは必要に応じてサイズに設定されています(wrap_content)。それはです。にはキャプションがありますが、見えません。私のリストビューのすぐ下にあるはずです:ボタンが表示されないのはなぜですか?
<?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="match_parent" >
<ListView
android:id="@+android:id/listviewContacts"
android:layout_width="match_parent"
android:layout_height="300dip"
android:scrollbars="vertical | horizontal" >
</ListView>
<Button
android:id="@+id/buttonSaveAndBegin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/save_settings_and_begin_responding" />
</LinearLayout>
私のボタンが表示されないのはなぜですか?
オリエンテーションでうまくキャッチします。 –