SelectionTracker.Builder isn't working IllegalArgumentException
You need to call recyclerView.setAdapter(...)
before SelectionTracker.Builder<>(...).build()
This is probably because at this point the adapter of the RecyclerView has not been set.
You need to call recyclerView.setAdapter(...)
before SelectionTracker.Builder<>(...).build()
This is probably because at this point the adapter of the RecyclerView has not been set.