Anybody know an easy way for an app to find all the instances of all the
Activities currently alive in the current process?

 

Yes, I could register each one into a static List<> someplace from the
constructor of each Activity, but that requires developers to remember to
put that code into every Activity constructor, which is going to eventually
miss one or two (not to mention keep the Activity alive longer than it
should be, though that could be fixed by holding WeakReferences instead of
strong ones, but that still misses the point), and that's going to mean one
or two escape the list. I'd prefer to have a way to see all of them from
Android's/Dalvik's point of view.

 

Ted Neward

Java, .NET, XML Services

Consulting, Teaching, Speaking, Writing

 <http://www.tedneward.com> http://www.tedneward.com

 

 

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to