无法使用折叠工具栏在NestedScrollView中滚动长ListView

时间:2018-11-24 17:53:03

标签: java android listview android-nestedscrollview

我当时正在使用折叠工具栏进行MainActivity,当滚动列表视图时该工具会折叠。列表视图很长,我尝试了许多其他解决方案(可以在代码中轻松找到),这些解决方案使我可以使列表视图更可见,但不完全可见。实际上,在某个点(我们正在谈论30行),它停止了,只显示了第31行的一半字,并且列表视图的其余部分不可滚动。

这是代码:

<android.support.v4.widget.NestedScrollView
android:id="@+id/scroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:layout_gravity="fill_vertical"
android:fillViewport="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:scrollbars="none">
   <RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:nestedScrollingEnabled="true"
    tools:targetApi="lollipop">
    <ListView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:nestedScrollingEnabled="true"
        android:id="@+id/list_view"
        android:scrollbars="vertical"
        android:fastScrollEnabled="true"
        android:fastScrollStyle="@style/Base.Theme.MaterialComponents"
        tools:targetApi="lollipop"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</RelativeLayout>

</android.support.v4.widget.NestedScrollView>

能帮我吗?如果您需要更多信息,只需询问!

F

0 个答案:

没有答案