Skip to content

Instantly share code, notes, and snippets.

@lucasr
Created September 1, 2014 13:20
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lucasr/9c7e31d81f302ab3a44b to your computer and use it in GitHub Desktop.
Save lucasr/9c7e31d81f302ab3a44b to your computer and use it in GitHub Desktop.
Using ItemSelectionSupport from TwoWayView
ItemSelectionSupport itemSelection = ItemSelectionSupport.addTo(recyclerView);
itemSelection.setChoiceMode(ChoiceMode.MULTIPLE);
itemSelection.setItemChecked(2, true);
@pawannimje
Copy link

Hi Lucas, first of all thanks for the library. I am trying to import this library in my project, my question is do I just need the core folder or core and layouts both ??

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment