android - pausing and resuming child activities in ActivityGroup -
i making first try att creating custom activitygroup. getting working except activity lifecycle methods of groups child activities. how can call onresume/onpause methods in child activities when enter/exit focus?
i know tabactivity cannot find how when looking through code.
thanks in advance!
i had similar problem. think has how activitygroup stores history. if store views in arraylist, onresume/onpause isn't called. solved using implementation instead, stores activity id's in arraylist instead of views, , found onresume , onpause called.
http://ericharlow.blogspot.com/2010/09/experience-multiple-android-activities.html
Comments
Post a Comment