有关NestedScrollView的问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了有关NestedScrollView的问题相关的知识,希望对你有一定的参考价值。
我正在开发一个同时使用NestedScrollView
和RecyclerView
的项目,我想要的是:
RecyclerView
的childView
的NestedScrollView
的高度根据子项的数量而变化,所以如果RecyclerView
的高度低于一定值,那么只有NestedScrollView
本身可以响应滚动,并且如果RecyclerView
的高度超过一定值,那么他们可以只是正常工作。
所以我想知道是否有一种NestedScrollView
的方法,我可以用NestedScrollView
不做NestedScroll
,或者我可以让NestedScrollView
的孩子不响应滚动但NestedScrollView
它可以。
答案
你可以使用这个属性。我想这可能会对你有所帮助。
android:nestedScrollingEnabled="false"
像这样,
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:nestedScrollingEnabled="false"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
以上是关于有关NestedScrollView的问题的主要内容,如果未能解决你的问题,请参考以下文章
NestedScrollView、LinearLayout 超出约束过度滚动
NestedScrollView 内的子级未覆盖整个屏幕高度
如何在viewPager的视图顶部使用nestedScrollView中的viewpager