Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an app where you enter some data. The PRE-Honeycomb behavior is the following:

  • back button seems to kill the app, all input data is lost
  • home button seems to pause the app, all input data is still there after the next start of the app

For Honeycomb the behavior for the home button seems to have changed. After pressing the home button and start the app again all input data is lost. Is that intented? The problem is that I can override the back button to save data, but reading various posts I cannot override the home button. Is that an expected behavior or a bug? How to deal with it?

share|improve this question
How do you restart your app in Honeycomb? My app keeps its input data when using home button and starting again. And I did not do anything special. – js- Dec 8 '11 at 16:00
Just by clicking the app icon again, liek I would start it the first time. – AndyAndroid Dec 8 '11 at 16:03

1 Answer

up vote 0 down vote accepted

Any time your app is not visible, it is eligible to be stopped by the system. You shouldn't assume anything about your app still running in the background if it's been hidden. If you want to guarantee data is not lost, make sure you save it somewhere in onPause() and restore it again in onResume().

share|improve this answer
true, but though tried it a hundret times on 2.x it never happend and on 3.1 it always happens. Seems that something has changed. – AndyAndroid Dec 8 '11 at 16:04
It may well be that something has changed; but it's something you shouldn't be relying on anyway. You should expect this behaviour to change! The only way to be safe is to save data in onPause() as I mentioned. – Graham Borland Dec 8 '11 at 16:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.