I have a ListView
which onItemClick
selected item changes its layout, pops different buttons. If any other item is selected, the previous selected one returns to normal. My ListView
adapter works fine but refreshing the whole list with notifyDataSetChanged()
in my adapter takes too much time.
My problem is to refresh only the changed items in the ListView
.
And also I would like to have suggestions for better scrolling performance.