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

时间:2017-05-09 15:32:21

标签: 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>

1 个答案:

答案 0 :(得分:5)

现在可以使用,只需删除scrollview并添加listview android:nestedScrollingEnabled="true"