I have a list view fed by BaseAdapter.

When something changes in data, I call BaseAdapter.notifyDataSetChanged. All works fine.

Now I wonder, if I change some tiny detail in some list item, is there some optimized way to update view of single item if it's displayed on screen? I suppose that notifyDataSetChanged blindly rebuilds views of all visible items in list, which is not optimal if trivial change in item happens.

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

No, I guess it's not possible unless you implement your own ListView class extension. Here there is the source code for setAdapter().

You will see, the ListView only registers itself as observer using mAdapter.registerDataSetObserver(mDataSetObserver); And a DataSetObserver provides no means to notify about a change at a certain position.

However it might not be necessary to notify about updates of certain items, because as far as I know, a ListView only renders and updates the items currently seen on the screen so, no optimization should be necessary here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.