youth5201314 / banner

🔥🔥🔥Banner 2.0 来了!Android广告图片轮播控件,内部基于ViewPager2实现,Indicator和UI都可以自定义。
Apache License 2.0
12.92k stars 2.51k forks source link

与appbarlayout嵌套,事件冲突 解决方案 #1253

Open zhaobinsir opened 3 weeks ago

zhaobinsir commented 3 weeks ago

问题描述:当[CoordinatorLayout]嵌套横向banner时,在banner上点住上下滑动会失效。(banner2 本质就是viewpager2) 解决方案: Banner.viewPager2.children.find { it is RecyclerView }?.let { (it as RecyclerView).isNestedScrollingEnabled = false }

问题原因:[ViewPager2]使用RecyclerView实现,RecyclerView吃掉了nested的一系列方法,导致无法回传至CoordinatorLayout,导致behavior失效,最终无法滑动 希望作者采纳!!