添加滚动后,我有列表,scrollview
我尝试更改滚动视图的高度,因此列表位于布局的中心并且高度更高,但它不起作用。
问问题
74 次
1 回答
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>
于 2012-10-24T12:06:35.253 回答