RecyclerView inside ScrollView, some items are not shown

前端 未结 2 1403
忘了有多久
忘了有多久 2021-01-03 22:53

I had a RecyclerView in ScrollView like this:



    &l         


        
2条回答
  •  孤独总比滥情好
    2021-01-03 23:31

    I found the solution myself: replace ScrollView with NestedScrollView and keep recyclerView.setNestedScrollingEnabled(false). I don't know if this is what NestedScrollView is made for but it works.

    NOTICE:

    1. NestedScrollView is not a child of ScrollView but of FrameLayout.
    2. This solution will also bring some bugs with self-simulated adjustResize.

提交回复
热议问题