• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps BaseAdapter problem

zhzhd82

Lurker
Hi all
I custom an adapter that extends BaseAdapter.In the getView() method I use the code Log.d("test",Integer.toString(position)); to output the position. The problem now is every time when the adapter notifyDataSetChanged() method is invoked the position first is 0 1 2 3 4(5 items in the screen) and then the displayed ListView item index in the screen.Why? Thank you very much!
 
Because of listview optimizes work of elements creation.

Firstly listview creates a maximum needed count of elements and then reuse them. For each next element, in method getView you will recieve already created view as parameter convertedView.

So If this parameter not null you should use it as already created view, fill in it your data and return it as new vew.
 
Back
Top Bottom