嗨,我正在制作 android 布局和屏幕在底部有空间,但 Listview 仍然没有扩大它的高度。它只保留一排的空间。
请建议我这个布局有什么问题。
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/parentScrollView"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="@color/light_white"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/parentRelativeLayout"
android:layout_width="fill_parent"
android:layout_height="match_parent" >
<RelativeLayout
android:id="@+id/relativeLayoutforAds"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true" />
<LinearLayout
android:id="@+id/linearLayoutList"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_below="@id/relativeLayoutforAds"
android:background="@color/black"
android:orientation="vertical" >
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</LinearLayout>
</RelativeLayout>
</ScrollView>