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 a Class A which runs activity via startActivityForResult by passing Intent to it. In other class, lets say B I get this Intent and recreate activity by it. How can I listen events for that activity, e.g. activity which was started for result is running and user pressed "back" button so I want to do some action. How can I do this? Thank you on advance.

Activity in which i recreate instance of object is not derived from Activity class. It is just ACTIVITY. So I have only object. is there any way to do such stuff with instance of class but not a class?

share|improve this question

4 Answers

up vote 1 down vote accepted

You should override the method : onBackPressed() of the Activity class.

share|improve this answer

You can override onDestroy and put the code there.

Another possibility (and may fit your needs better) is to override onBackPressed.

share|improve this answer
1  
Wouldn't this be called by the system if the Activity is being destroyed, for example, due to out-of-memory? I'm not sure this is what OP is after. – Aleks G Apr 3 '12 at 14:40
You have a point, although I think that in general it is better to follow the activity life cycle and not be bound to keys. – Binyamin Sharet Apr 3 '12 at 14:43
Well, that depends what the requirements are. In one of my apps, I have an activity, whose view is changing based on user action. When the "back" key is pressed, I either restore the original state (if I'm in the changed state) or finish the activity. In this case, the lifecycle isn't going to help me. – Aleks G Apr 3 '12 at 14:45

In the activity, where you want to act on "back" button, simply override onKeyDown (or onKeyUp) method:

@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
    if (keyCode == KeyEvent.KEYCODE_BACK) {
        //do whatever you need for the hardware 'back' button
        return true;
    }
    return super.onKeyDown(keyCode, event);
}

Keep in mind that if you want the "back" key to still end your activity, then you'll need to include

setResult(result);    //if you want to pass a result to activity A
finish();

somewhere in that conditional before return true;

share|improve this answer

Sorry, for ambigious question. Please see editted question above.

share|improve this answer
I found it more ambigous now :) – Ovidiu Latcu Apr 3 '12 at 15:01
Well, I want to know is there any way to set backbutton listener via intent but not by extending Activity class – unresolved_external Apr 3 '12 at 15:11
Most definitely not. You should have a look at Handlers maybe, and somehow send messages from the second activity, to the first. but this will be possible only if you are implementing the second activity. – Ovidiu Latcu Apr 3 '12 at 15:17

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.