- android NestedScrollView里嵌套Recyc
- NestedScrollView进入界面不能定位到顶部问题解决
- android ConstraintLayout 嵌套Recyc
- android的RecyclerView嵌套在NestedScr
- android解决RecyclerView嵌套在NestedSc
- NestedScrollView嵌套Recyclerview列表
- NestedScrollView嵌套RecyclerView导致
- Android NestedScrollView 嵌套webvi
- Android NestedScrollView嵌套ViewPa
- Android NestedScrollView嵌套Recycl
布局
<androidx.core.widget.NestedScrollView
android:id="@+id/scroView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_anchorGravity="bottom"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rvList"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:nestedScrollingEnabled="false"
android:overScrollMode="never" />
</androidx.core.widget.NestedScrollView>
解决方案
scroView.fling(0)
scroView.smoothScrollTo(0,0)
网友评论