Is there any way how to distinguish whether onDestroy() will be called after onPause()? In may activity I need to do different action when Activity lost focus and when Activity is going down, but even when activity is going down onPause() is called before onDestroy() I want to do different action in onPause() when activity lost focus and when is going down and onDestroy() is gonna be called.

link|improve this question

0% accept rate
Why don't you accept the answer? – Beasly Feb 17 '11 at 11:03
feedback

1 Answer

Yes with:

@Override
protected void onPause() {
    super.onPause();
    if (this.isFinishing()) {
         // WAHT YOU WANT TO DO BEFORE DESTROYING...
    }
}  

But of course it can't handle if your app crashs ;)

link|improve this answer
thanks a lot... – esmeralda2 Jan 25 '11 at 15:20
1  
@esmeralda2 You are welcome. Would be nice if you accept the answer ;) – Beasly Jan 25 '11 at 15:40
feedback

Your Answer

 
or
required, but never shown

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