I Cannot Delete Item From Listview
I pass data from a listview to another listview with sharedpreferences. I can write items, I cannot remove an item of them. I dont have error but I have no result. MyActivity final
Solution 1:
Don't create list1
, or if you need it for whatever reason, you need to recreate the adapter with it
You should create the first list as this so you can remove from it
list = new ArrayList<>(Arrays.asList(providers)):
Post a Comment for "I Cannot Delete Item From Listview"