use of com.nhaarman.listviewanimations.appearance.simple.ScaleInAnimationAdapter in project cardslib by gabrielemariotti.
the class DragDropListFragment method setScaleAdapter.
/**
* Scale animation
*/
private void setScaleAdapter() {
AnimationAdapter animCardArrayAdapter = new ScaleInAnimationAdapter(mCardArrayAdapter);
animCardArrayAdapter.setAbsListView(mListView);
if (mListView != null) {
mListView.setExternalAdapter(animCardArrayAdapter, mCardArrayAdapter);
}
}
Aggregations