RecyclerView MultiSelect is a tool to help implement single or multichoice selection on RecyclerView items. It does not provide the same interface as ListView's setChoiceMode(), but can do everything setChoiceMode() does.
Questions tagged [recyclerview-multiselect]
3 questions
2
votes
1 answer
Load more not working correctly in RecyclerView
I have custom recyclerView.In items long click I would to hide some views and show another view(hide imageviews and show Checkboxs)
Here is a my code's snippet
@Override
public void onLongClickListener(String type, final int pos) {
…

BekaKK
- 2,173
- 6
- 42
- 80
1
vote
1 answer
A crash occurs when getMultiSelector().clearSelections() is added to onDestroyActionMode
I'm using recyclerview-mutiselect to implement actionmode selection pattern in my app.
However, overriding the onDestroyActionMode and adding the line getMultiSelector().clearSelections() causes a jni crash. What causes this? Is it fixable? If yes…

Binoy Babu
- 16,699
- 17
- 91
- 134
0
votes
0 answers
Delete multiple items from Recyclerview at once
I have a recycler view and an array of positions to be deleted.
Now when i delete the items using a loop , after deletion of item at position 1, the total number of items in Recyclerview decreases hence the rest positions point to wrong rows .…

Naimish Srivastava
- 373
- 1
- 3
- 14