etsy/AndroidStaggeredGrid

Can I use setMultiChoiceModeListener with StaggeredGridView?

rampatra opened this issue · 0 comments

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() {...});