Scrolling nested scrollview to the end to scrolllerview scrolls for children

here is my layout

________________  ___   
|              |   ||
| Linear       |   ||
| Layout       |   ||
|              |   || nested scroll view
|______________|   ||
||            ||   ||
||            ||   ||
||   Child    ||  _||
||Recyclerview||
||____________||
|______________|      -end

how to make the parent LinearLayoutscroll first and when it reaches the end, you need to scroll the child recyclerview.

By default, the child first RecyclerViewscrolls to the end before the parent starts scrolling.

+4
source share
1 answer

You should probably work with the Header concept on RecyclerView. Take a look at this post: Android 5.0 - Add Header / Footer to RecyclerView

0
source

Source: https://habr.com/ru/post/1612606/


All Articles