How to unselect all selected items in RecyclerView's SelectionTracker even if some items are scrolled off the screen?
问题 I am using SelectionTracker to implement a multiple selection RecyclerView. the select/unselect feature works as expected if I do it manually (Item is on the screen and I change its state by tapping) but if I try to unselect all items, some of which are off screen, using clearSelection method of selection tracker it only unselects the items which are currently visible on the screen. This is how I am building the SelectionTracker tracker = SelectionTracker.Builder<Long>( "mySelection",