我添加滚动后我有scrollview
列表我尝试更改高度
滚动视图的列表,因此列表位于布局的中心,高度更高,但它不起作用。
答案 0 :(得分:1)
ListView
是可滚动的。您无法将ListView
放在ScrollView
内。
试试这段代码
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bg_all_1" >
<LinearLayout
android:id="@+id/bottom_menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:orientation="vertical" >
</LinearLayout>
<include
android:id="@+id/top_header"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginLeft="40dp"
android:layout_marginTop="91dp"
layout="@layout/layout_header" />
<include
android:id="@+id/footer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/bottom_menu"
android:layout_alignParentLeft="true"
android:layout_marginBottom="40dp"
layout="@layout/layout_footer" />
<ListView
android:id="@android:id/list"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_above="@+id/footer"
android:layout_below="@+id/top_header"
android:layout_centerHorizontal="true" >
</ListView>
</RelativeLayout>