Android - what is the meaning of StableIDs?
Stable IDs allow the ListView
to optimize for the case when items remain the same between notifyDataSetChanged
calls. The IDs it refers to are the ones returned from getItemId
.
Without it, the ListView
has to recreate all View
s since it can't know if the item IDs are the same between data changes (e.g. if the ID is just the index in the data, it has to recreate everything). With it, it can refrain from recreating View
s that kept their item IDs.
If hasStableIds()
returns false
then each time you call notifyDataSetChanged()
your Adapter will look at the returned value of getItemId
and will eventually call getView(int position, View convertView, ViewGroup parent)
. If hasStableIds()
returns true
the this will only be done when their id has changed.
Using this technique you can easily update only one Item in the ListView
If you implement getItemId
correctly then it might be very useful.
Example :
You have a list of albums :
class Album{
String coverUrl;
String title;
}
And you implement getItemId
like this :
@Override
public long getItemId(int position){
Album album = mListOfAlbums.get(position);
return (album.coverUrl + album.title).hashCode();
}
Now your item id depends on the values of coverUrl and title fields and if you change them and call notifyDataSetChanged()
on your adapter, then the adapter will call getItemId() method of each element and update only those items which id has changed.
This is very useful if are doing some "heavy" operations in your getView()
.