运行的效果是每个ListView都占有独立的滚动区,将滚动条设置为none也是一样。求解<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:stretchColumns="1"> <TableRow android:id="@+id/trMusic">
<ListView android:id="@+id/lvMusic" android:layout_width="fill_parent" 
android:layout_height="wrap_content" android:layout_span="3"
            android:scrollbars="none"//这个属性只能让滚动条不显示,效果还是和原来的一样
            >  //第一个ListView
</ListView>
</TableRow>
<TableRow android:id="@+id/trImg">
<ListView android:id="@+id/lvImg" android:layout_width="fill_parent" android:scrollbars="none"
android:layout_height="wrap_content" android:layout_span="3">  //第二个ListView
</ListView>
</TableRow> <TableRow>
<ListView android:id="@+id/lvMovie" android:layout_width="fill_parent" android:scrollbars="none" 
android:layout_height="wrap_content" android:layout_span="3">  //第三个ListView
</ListView>
</TableRow>
</TableLayout>