02-21-2012 04:55 PM
Is there a method I can override which runs when the user exits the Android runtime? (ie: by swiping the application off the screen)
I need to save the user's work before the application is closed.
I have tried finalize(), onTerminate(), and onDetatchedFromWindow(), but nothing seems to work.
Thank you!
02-21-2012 04:56 PM - edited 02-21-2012 04:56 PM
Have you tried onDestroy( ) or onStop( ) ?
11-28-2012 01:01 PM