friends,

i am using following code in my ListActivity

// a seperate class in project

    public class MyActivity extends ListActivity {
    //some common functions here..

    }


    public class SelectLocation extends MyListActivity 
    {

    public void onCreate(Bundle savedInstance) {
       // here.....
    }



     @Override
        protected void onDestroy() {
            super.onDestroy();
            if(adap != null)
                adap = null;

            if(list != null)
                list = null;

            System.gc();

        }


    }

any one guide me why onDestroy method is not called in my code?

any help would be appreciated.

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

onDestroy() is called only when system is low on resources(memory, cpu time and so on) and makes a decision to kill your activity/application or when somebody calls finish() on your activity.

So, to test your code() you can make a test button, that will call finish() on your activity.

Read more here.

Also, I believe you don't need to call all this stuff in onDestroy() until adap is not a critical resource. And even in that case android system has mechanisms to properly dispose them.

link|improve this answer
ok thanks for you reply, if want to sweep every thing after i use what should i do ? – UMAR Dec 15 '10 at 12:48
it will be wiped anyway, see the updated answer. – Vladimir Ivanov Dec 15 '10 at 12:52
feedback

There is no guarantee that your onDestroy method will be called at all.

The code that you are using in your onDestroy method is not needed at all. If destroy is called your acitivity will be removed from the stack and is free for garbage collection anyway with all the resources in it that are only referenced by the activity. Also System.gc() is supposed to be bad style. On Android the system nearly always knows when it is the best time to do a garbage collection. Most of the times an activity finishes garbage collection is triggered automatically. Just remove the whole onDestroy method. If you have problems with the overall memory of your application the problem is somewhere else.

link|improve this answer
Its sort of funny, but the image here sort of says that onDestroy will always be called. If you read the text, that is also said: "The entire lifetime of an activity happens between the call to onCreate() and the call to onDestroy()." developer.android.com/guide/topics/fundamentals/… – Ted Oct 11 '11 at 22:48
Yes in the beginning of the documentation and the image it is not shown very clearly that onDestroy might not be called. It is only mentioned later while the killable after part of the table below the image is explained. If you only have a quick glance at the image you may be misled. – Janusz Oct 12 '11 at 6:20
Actually, you can read quite a bit of the text, and get the clear impression that onDestroy is always called. Look at "Table 1": [onDestroy] Called before the activity is destroyed. This is the final call that the activity will receive. – Ted Oct 12 '11 at 8:35
Yes if you don't look at the isKillable after part of the table this is true. If you feel this is an error in the documentation file that as a bug under b.android.com most of the times such a small documentation problem gets a person assigned within a day and it will be corrected the next time the documentation gets updated. – Janusz Oct 12 '11 at 10:03
feedback

You need to move your code to above the super.onDestroy() , as the system could clear up your activity before it has ran your code!

@Override
    protected void onDestroy() {            
        if(adap != null)
            adap = null;

        if(list != null)
            list = null;

        System.gc(); // you won't need this

        super.onDestroy(); // Move to bottom
    }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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