本文介绍了为单个列表视图设置多个适配器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
是否可以将多个适配器设置为一个列表?
Is it possible for setting more than one adapter to a single list?
例如
list.setAdapter(adapter1);
list.setAdapter(adapter2);
推荐答案
也许你可以像这里一样尝试将多个适配器连接到单个适配器
Maybe you can try attaching multiple adapters to a single adapter like here
或者这个http://jsharkey.org/blog/2008/08/18/separating-lists-with-headers-in-android-09/
如果我正确理解你需要它
if I understand what you need it for correctly
请更新您想要它的原因,以便我们更好地了解
Pls update why you want it for so we have a better understanding
这篇关于为单个列表视图设置多个适配器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!