Index out of bound: ArrayList
Problem
I have implemented multi-selection behavior for recycler view using an external library. Now, to remove items from recycler view, I implemented a two for loops. First for loop deleted items from SQLite and the second for loop removes correspondent views from the adapter. However, the problem arises when removing views from the adapter.
for (i in selectedCardItems!!.indices) //selectedCardItems stores selected card position.
{
val index =...