Android 在tablelayout中垂直滚动(仅适用于SDK 14)

Android 在tablelayout中垂直滚动(仅适用于SDK 14),android,xml,listview,Android,Xml,Listview,我的ScrollView适用于除4.0.x之外的所有Android版本,从4.1到4.4。 (我的版本是14) 我知道将ListView放在ScrollView中是个坏主意,但即使没有ListView,它也不会工作。(我不介意ListView不能滚动。) 那么我该怎么做才能使垂直滚动视图在安卓4.0上工作呢 <?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.andro

我的ScrollView适用于除4.0.x之外的所有Android版本,从4.1到4.4。 (我的版本是14)

我知道将ListView放在ScrollView中是个坏主意,但即使没有ListView,它也不会工作。(我不介意ListView不能滚动。)

那么我该怎么做才能使垂直滚动视图在安卓4.0上工作呢

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:id="@+id/info_mainsv" >

<TableLayout
    android:id="@+id/info_tableLayout1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

  ...

    <TableRow
        android:id="@+id/tableRow3"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:padding="5dip" >

        <TextView ... />
    </TableRow>

    <TableRow
        android:id="@+id/tableRow4"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:padding="5dip" >

        <ListView
            android:id="@+id/listViewDoel"
            style="@style/nowCardStyle"
            android:layout_width="wrap_content"
            android:layout_height="300dp"
            android:clickable="false"
             />
    </TableRow>

    <TableRow>
        ...
    </TableRow>
</TableLayout>
</ScrollView>

...
...