嵌套滚动视图内的滚动视图不起作用

Sug*_*ara 2 android scrollview android-nestedscrollview

这是真的吗?我想通过使用嵌套滚动视图在我的活动中滚动列表视图.请帮忙.提前致谢

<android.support.v4.widget.NestedScrollView
    android:id="@+id/login_form"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <LinearLayout
        android:id="@+id/insertkend_form"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <ScrollView
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <ListView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/listAksesoris">
            </ListView>

        </ScrollView>

   </LinearLayout>

</android.support.v4.widget.NestedScrollView>
Run Code Online (Sandbox Code Playgroud)

Sug*_*ara 7

它现在工作,只需删除scrollview并添加listview android:nestedScrollingEnabled="true".