Actually I know i am asking about the simple and basic concept of android. But I am a little bit confused about these finish() and onDestroy() mehods. Whether this will kill the activity and free the resources associated with these activity?

I tried with a simple application which contains only one activity. I thought the concept is like When the application runs, the activity will start. and when we click on back button, it will finish. And I gave some toast message inside each life cycle methods for konowing the momery usage . And when I clicked on the back button it executed onpause, onstop, and ondestroy. I thought this activity finished. But when i relaunched the application again, then it took more moery than the previous time. This is happenened every time when I run the app from eclipse or relaunch the application from home screen.

Why it is happening? How can i actually destroy the application / activity to free the memory?

Edited

I am including my code. I just give only one taost message inside the class. Then also memory usage is increasing.

Each time when i run the application the allocated size is increasing like : 3302744, 3442384, 3474552

 public class myActivity extends Activity
   {
         @Override
         public void onCreate(Bundle savedInstanceState)
         {
             super.onCreate(savedInstanceState);     
        Toast.makeText(getBaseContext()," allocated size  = " + Debug.getNativeHeapAllocatedSize(), 1).show();      
         }

   }

manifest

<application android:icon="@drawable/icon" android:label="@string/app_name">
        <activity android:name=".myActivity "  
                  android:label="@string/app_name"  >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity> 
 </application>

Why the memory is increasing on every time?

Help me please...

Thank you..

link|improve this question

54% accept rate
feedback

4 Answers

up vote -7 down vote accepted

ACtually u cant exit an android application.when u click on back button it is giving a feel dat ur app is killed.if u see the currently running apps list u can see that the application is still running.but if u click on dat app again it vl start from the scratch...

link|improve this answer
1  
This is inaccurate and has not much to do with the original question. I'm surprised that this was accepted while my detailed answer has 3 votes and has not been accepted. – user289463 May 24 '11 at 16:26
my question is whether onDestroy() or finish() kill the running for freeing the memory. That is i want to know about memory allocation. Yoy and other people expalined to me about the behaviour of that functions. i want to know whether it is actually killed. and star angel answered me that app will not be killed. that means it is taking the memory. thats y i accepted this answer. But i did nt understand that y the app is not actually killed. Thank you user289463 for ur suggestions... thanks star angel for the answer – Jomia May 25 '11 at 3:39
feedback

The default behavior is that back button will cause the activity to exit and it'll be destroyed. Displaying a toast in onDestroy or onPause is not a good idea though. It'll alter the lifecycle the of your activity in a way you don't want it to happen. Use logging instead, so you'll see what's really happening. BTW, finish() is something that you call explicitly from your code and onDestroy() is a lifecycle event/method which gets called as a result of finishing/destoying the activity in any way.

link|improve this answer
thank u for the info.. but if the activity is actually finished (the resources are set as free), why the memory is increasing every time? – Jomia May 24 '11 at 10:34
I suggest to use the MAT plugin for Eclipse to troubleshoot memory leaks. Your method may not be reporting what you're trying to observe. (first leave the Toasts out and switch to log lines) – user289463 May 24 '11 at 10:51
feedback

The finish() kills the activity and releases memory... unless you have some reference stored that is leaked... for example on methods like onRetainNonConfigurationInstance()

When you press the back button what is called is the finish() method that than calls onPause, onStop, onDestroy.

link|improve this answer
feedback

Finish() will literally finish your activity and if no references are present a GC will recover resources. onDestory() is actually a method that the system will call when it is destroying your activity and you are supposed to implement this function. You dont need to worry avout destroying your app , android does it for you.

link|improve this answer
destroy means whether it will free the memory? – Jomia May 24 '11 at 10:36
The Garbage Collector will reclaim memory of all objects that do not have any reference to them. But as I said you cant call/should not call onDestroy , that is the framework's job – Ravi Vyas May 24 '11 at 10:52
feedback

Your Answer

 
or
required, but never shown

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