AuxOne wrote: > I've chosen singletonInstance in hopes of avoiding the problem I have > now. It just seems to me from a memory perspective it could be better > to have less instances of the application in memory, but based on your > response I will remove it.
Android handles cleaning up destroyed activities for you automatically, so long as you're not holding onto them from a static context, which is where an unregistered LocationListener will get you in trouble. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Training...At Your Office: http://commonsware.com/training -- 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

