DroidKaigi / conference-app-2018

The Official Conference App for DroidKaigi 2018 Tokyo
Apache License 2.0
1.35k stars 332 forks source link

Fix #544 BottomNavigationView cannot show with scrolling on grandchild RecyclerView #547

Closed gen0083 closed 6 years ago

gen0083 commented 6 years ago

Issue

Overview (Required)

Layout

This is simplified:

CoordinatorLayout
 +- RecyclerView (scroll toward vertical) : child RecyclerView
      +- SessionHeaderItem
      +- HorizontalSessionsItem = grandchild RecyclerView (scroll toward horizontal)
      : 
     and more
 +- BottomNavigationView

Detail

It's caused by confusing to handle nested scroll event from child and grandchild RecyclerView. We interest only child RecyclerView not grandchild RecyclerView. Grandchild RecyclerView scrolls via horizontal. BottomNavigationView shows/hides via vertical scroll. We don't need to receive nested scroll event from grandchild RecyclerView.

Screenshot

after

mhidaka commented 6 years ago

Wow!

mhidaka commented 6 years ago

quick fix! thankyou @gen0083