How to use RecyclerView inside NestedScrollView?

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

    if you want to use RecyclerView in NestedScrollView this is a simple tricky, just set :

    RecyclerView

    • recyclerView.setHasFixedSize(false) (java/kt)

    • android:nestedScrollingEnabled="false"

    • android:layout_height="wrap_content"

    • android:overScrollMode="never"

    NestedScrollView

    • android:fillViewport="true"

    this is work for me, and you can use many RecyclerView in NestedScrollView with this too.

提交回复
热议问题