在单个ListView上设置2个适配器

时间:2013-09-05 11:41:53

标签: android-animation expandablelistview

我正在开发一个项目,需要在一个ListView上设置两个适配器。

ListViewAnimationAndroid-SlideExpandableListView

怎么做?

1 个答案:

答案 0 :(得分:0)

尝试使用ListViewAnimations库中的ExpandableListItemAdapter。这样你可以堆叠两个适配器:

ExpandableListItemAdapter eliAdapter = new ExpandableListItemAdapter(MainActivity.this){ /* implement required methods */};
SwingBottomInAnimationAdapter animAdapter = new SwingBottomInAnimationAdapter(eliAdapter);
animAdapter.setAbsListView(mListView);
mListView.setAdapter(animAdapter);