manigault wrote: > How can i find when an item in listview get out of screen during > scroll. I am using resources for each item in listview and i want when > the item get invisible to free the resources. Thanks
Extend your adapter to override bindView() (CursorAdapter) or getView (ArrayAdapter). When you bind new data to the row, you know the old data is no longer on the screen. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _Beginning Android 2_ from Apress Now Available! -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en To unsubscribe from this group, send email to android-beginners+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.

