You are using setTag and getTag on children of a ListView, which are list* -item* views. If your list*-item* views are just an ImageView, wrap each ImageView in a parent-view (a FrameLayout or something) instead and return this parent-view as the return-value of 'getView'. Then *lView *in your sample code will be this parent-view and *taggedView *will be your ImageView.
-- 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

