How can I put a ListView into a ScrollView without it collapsing?

后端 未结 27 3240
轮回少年
轮回少年 2020-11-21 05:24

I\'ve searched around for solutions to this problem, and the only answer I can find seems to be \"don\'t put a ListView into a ScrollView\". I have yet to see any real expl

27条回答
  •  悲&欢浪女
    2020-11-21 05:44

    Before it was not possible. But with the release of new Appcompat libraries and Design libraries, this can be achieved.

    You just have to use NestedScrollView https://developer.android.com/reference/android/support/v4/widget/NestedScrollView.html

    I am not aware it will work with Listview or not but works with RecyclerView.

    Code Snippet:

    
    
    
    
    
    

提交回复
热议问题