我在我的 Android 应用程序(API 8)中实现了一个列表视图。但是,该列表仅包含三个元素,因此屏幕的一半以上是空的。我想扩展列表视图以覆盖手机的整个屏幕。有哪些方法可以做到这一点?
这是我的布局 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>
请注意,我希望列表项覆盖整个屏幕,只有三个项目到位。