How to use RecyclerView inside NestedScrollView?

前端 未结 24 2404
抹茶落季
抹茶落季 2020-11-22 03:39

How to use RecyclerView inside NestedScrollView? RecyclerView content is not visible after setting adapter.

UPDATE

24条回答
  •  清酒与你
    2020-11-22 04:30

    There are a lot of good answers. The key is that you must set nestedScrollingEnabled to false. As mentioned above you can do it in java code:

    mRecyclerView.setNestedScrollingEnabled(false);
    

    But also you have an opportunity to set the same property in xml code (android:nestedScrollingEnabled="false"):

     
    

提交回复
热议问题