Created
September 1, 2014 13:20
-
-
Save lucasr/9c7e31d81f302ab3a44b to your computer and use it in GitHub Desktop.
Using ItemSelectionSupport from TwoWayView
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ItemSelectionSupport itemSelection = ItemSelectionSupport.addTo(recyclerView); | |
itemSelection.setChoiceMode(ChoiceMode.MULTIPLE); | |
itemSelection.setItemChecked(2, true); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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 ??