etsy / AndroidStaggeredGrid

An Android staggered grid view which supports multiple columns with rows of varying sizes.
https://github.com/etsy/AndroidStaggeredGrid
4.76k stars 1.13k forks source link

Can I use setMultiChoiceModeListener with StaggeredGridView? #153

Open rampatra opened 9 years ago

rampatra commented 9 years ago

I want multiple select in StaggeredGridView i.e, batch contextual actions.

I tried but it didn't work, so is it supported or am doing it wrong somewhere?

Here is my code snippet:

mGridView = (StaggeredGridView) v.findViewById(R.id.products_grid_view);
mGridView.setChoiceMode(AbsListView.CHOICE_MODE_MULTIPLE_MODAL);
mGridView.setMultiChoiceModeListener(new AbsListView.MultiChoiceModeListener() {...});