Android アプリ (API 8) にリストビューを実装しました。ただし、リストは 3 つの要素のみで構成されているため、画面の半分以上が空です。リストビューを拡張して、電話の画面全体をカバーしたいと考えています。同じことを行うにはどのような方法がありますか?
これが私のレイアウト XML ファイルです。
<?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"
android:orientation="vertical"
android:background="@color/white"
android:shape="rectangle"
android:paddingTop="5dp"
android:paddingBottom="0dp"
>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="100"
>
<ImageView
android:layout_weight="40"
android:id="@+id/test_image"
android:layout_width="158dp"
android:layout_height="52dp"
android:contentDescription="@string/footer"
android:src="@drawable/logo1" />
<Spinner
android:id="@+id/spinner1"
android:layout_width="127dp"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:layout_weight="60"
android:prompt="@string/city_prompt"
/>
</LinearLayout>
<LinearLayout android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
>
<ListView
android:id="@android:id/list"
android:layout_weight="1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#000000"
android:drawSelectorOnTop="true"
android:layout_gravity="center"
android:dividerHeight="2dp"
/>
</LinearLayout>
</LinearLayout>
リスト項目を画面全体に表示し、項目を 3 つだけ配置することに注意してください。