Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android - Double RecyclerView and CollapsingToolbarLayout

I'm currently developing an App which needs to display a vertical list, with horizontal list for each child. This view is using a CoordinatorLayout (with a CollapsingToolbarLayout). The problem is that when I scroll (vertically), the Toolbar isn't collapsing.

I noticed that the problem occurs only if the vertical list's item are horizontal lists.

Here is a picture explaing my problem :

RecyclerView problem

Thanks in advance !

like image 341
Rascafr Avatar asked Apr 11 '26 16:04

Rascafr


1 Answers

Ok, I finally found a solution here , using setNestedScrollingEnabled(false) on the child RecyclerView ! :)

like image 95
Rascafr Avatar answered Apr 14 '26 06:04

Rascafr