On Thu, Aug 5, 2010 at 3:04 PM, Eric <[email protected]> wrote: > However when my application tries to bring the existing activity to front > via notification, the existing activity's onDestroy has been called which > causes problem. How can I skip this onDestroy method? >
You can't, really. If the user goes away from your app to do something else, your app is subject to being killed at any time. Instead of trying to get around calling onDestroy, you should explain what "problems" this causes and focus on fixing that. ------------------------------------------------------------------------------------------------- TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago transit tracking app for Android-powered devices -- 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

