Indexoutofboundsexception When Removing A Listview Item With Delay
I created an adapter with items that contains remove buttons. When the user click the button the item should be removed. If I use this code: list.remove(item); notifyDataSetChang
Solution 1:
you need to update the count as well notifydatasetchange calls only getview method only so i suggest anyhow try to update the count as well,you are getting this exception because getCount method is not being called
Post a Comment for "Indexoutofboundsexception When Removing A Listview Item With Delay"