How to use RecyclerView inside NestedScrollView?

前端 未结 24 2724
抹茶落季
抹茶落季 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:36

    Here is the code that I'm using to avoid scrolling issues:

    mRecyclerView = (RecyclerView) view.findViewById(android.R.id.list);
    mRecyclerView.setLayoutManager(new LinearLayoutManager(getContext()));
    mRecyclerView.getLayoutManager().setAutoMeasureEnabled(true);
    mRecyclerView.setNestedScrollingEnabled(false);
    mRecyclerView.setHasFixedSize(false);
    

提交回复
热议问题