NestedScrolling with NestedScrollView, RecyclerView (Horizontal), inside a CoordinatorLayout

前端 未结 5 1026
被撕碎了的回忆
被撕碎了的回忆 2021-01-02 00:28

I have a UI design with CollapsingToolbarLayout, like following.



        
5条回答
  •  无人及你
    2021-01-02 01:12

    You need to disable nested scrolling programatically. It doesn't seem to work correctly if done in xml.

    recyclerView.setNestedScrollingEnabled(false);
    

提交回复
热议问题