2013-09-05 29 views

回答

0

嘗試ListViewAnimations庫中的ExpandableListItemAdapter。這樣,您可以堆疊兩個適配器:

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