I developed a game in andEngine which is almost final. Only problem I am facing now is that when during GamePlay if power button is pressed and Game is resumed again It starts from star. Suppose I am playing Level 6 and I pressed power button when the game will be resumed it will start from Level 1. Can any one help me with this?

link|improve this question

You mean that pressing the power button so the Phone option interface appears, then pressing the back key to resume game play? – Jong Jan 21 at 9:43
feedback

closed as not a real question by casperOne Jan 26 at 22:38

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

up vote 1 down vote accepted

You have to save current state in onSaveInstanceState() and load it in onRestoreInstanceState().

Check this link: Android activities

Specifically:

link|improve this answer
thanks it worked. – Jawad Amjad Jan 21 at 11:40
feedback

The main activity detects when it is being paused and taken out of memory. Look into the Activity onPause() and onResume().

link|improve this answer
already handled these two but no result. – Jawad Amjad Jan 21 at 8:31
feedback

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