AppBarLayout with recyclerView in nested fragment

前端 未结 3 1367
长情又很酷
长情又很酷 2020-12-31 12:58

As images are always better than words, I present to you my current layout.

The toolbar/tabs is in an activity.xml with a viewPager, and the recycle

3条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-31 13:06

    What's with all the crazy code/layouts?

    In the fragments where you don't want the toolbar to scroll, do this in the fragment's onCreateView():

        recyclerView.setNestedScrollingEnabled(false);
    

提交回复
热议问题