I\'m implementing a ListAdapter of ExpandableListView, while working i see that i need to overide the function boolean hasStableIds(). Can anyone explain please what is the
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()
.