I don't want my acivity to get destroyed when Back button is pressed. My app is compatible from 1.6 SDK's. Referring to http://android-developers.blogspot.com/2009/12/back-and-other-hard-keys-three-stories.html and Android: Override back button to act like home button, I opted the following code :

    @Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
                // For versions lower than 2.0     
    if (Utility.buildDet.getDeviceBuildAPI() <= Utility.buildDet.getBuildApi() 
            && keyCode == KeyEvent.KEYCODE_BACK && event.getRepeatCount() == 0)
        onBackPressed();
    return super.onKeyDown(keyCode, event);
}

      // In any version, this function will be called
public void onBackPressed() {
    // This will be called either automatically for you on 2.0    
    // or later, or by the code above on earlier versions of the platform.
    Log.i(TAG, "##### BACK KEY IS PRESSED");
    this.moveTaskToBack(true);  // on false, it shows moveTaskToBack: 11
    return;
}

When I press Back button, I these logs

: ##### BACK KEY IS PRESSED
 INFO/ActivityManager(51): moveTaskToBack: 10
: !!!!!!! Into onPause
: !!!!!!! Into onStop
: !!!!!!! Into DESTROY

I have not overridden moveTasToBack(). Anu clu what do I do to not get destroyed when back button is pressed. Maybe I want to just ignore the button or hide the activity.

Any clue, why it is not working as expected.

Thanks

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted
public boolean onKeyDown(int keyCode, KeyEvent event)  
{

     if (keyCode == KeyEvent.KEYCODE_BACK && event.getRepeatCount() == 0)
     {

        this.moveTaskToBack(true);
           return true;
      }

    return super.onKeyDown(keyCode, event);
}
link|improve this answer
Thanks Adil, It worked with 1.6 and 2.1+. I hope it works on real devices of Droid 2.0+ for which onBackPressed is required (as read on internet while searching for the query). – Tvd May 30 '11 at 9:26
+1 For nice answer – parag Apr 30 at 8:06
feedback

Why do you want to change standard system bahaviour? Android system can destroy activity or not. It should depend only on the system. You probably want to do something that can be done differently. Maybe you need services or implement saving state of activity?

link|improve this answer
I do have service started after certain steps done. And also saving state using onSaveInstanceState . If the app is Stop and clicked again to start, it is resumed and not re-created. App has its own "Qui" button to close the activity smoothly cleaing all components, services, etc. What else can I do when the app is runnnig and user clicks "Back" button maybe by mistake or service is not yet started so I want it to be alive as long as it can ? – Tvd May 30 '11 at 9:41
feedback

Your Answer

 
or
required, but never shown

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