我正在开发一个需要在单个 ListView 上设置两个适配器的项目。
ListViewAnimation和Android-SlideExpandableListView
怎么做?
ExpandableListItemAdapter
在 ListViewAnimations 库中尝试。这样您就可以堆叠两个适配器:
ExpandableListItemAdapter eliAdapter = new ExpandableListItemAdapter(MainActivity.this){ /* implement required methods */};
SwingBottomInAnimationAdapter animAdapter = new SwingBottomInAnimationAdapter(eliAdapter);
animAdapter.setAbsListView(mListView);
mListView.setAdapter(animAdapter);