Just before you call this.notifyDataSetChanged(), do you modify the arrays scripVector, closeVector and changeVector?
BTW: I see a LOG message that examines the count of list-view childer (aView.getChildCount()). The number of children in the list-view (aView) is not the same as the number of items in your adapter (i.e. the range of values that the 'position' can take in getView). The getChildCount is never larger than the items in the list-view that are currently (partially) visible in the listview, while the number of items in your adapter can be much much larger. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

