Question

I am wondering that will activity run the method "onDestroy" when killed by system?

for example, when the state of "activity A" is onStop ( user may press the Home button directly ), at the same time, system find out that the memory is not enough so system have to kill some background processes to keep foreground activity alife, say system kill activity A.

Will activity A run the method "onDestroy" in this situation?

Was it helpful?

Solution

It will purely depend on the system condition at that time. Docs clearly says about onDestroy() that:

There are situations where the system will simply kill the activity's hosting process without calling this method (or any others) in it, so it should not be used to do things that are intended to remain around after the process goes away.

See Here

OTHER TIPS

From the developer.android.com :

When your activity receives a call to the onStop() method, it's no longer visible and should release almost all resources that aren't needed while the user is not using it. Once your activity is stopped, the system might destroy the instance if it needs to recover system memory. In extreme cases, the system might simply kill your app process without calling the activity's final onDestroy() callback, so it's important you use onStop() to release resources that might leak memory.

So, android usually will call onDestroy() of your activity before it is killed but it is not guaranteed.

Link : http://developer.android.com/training/basics/activity-lifecycle/stopping.html

Depends, as when system kills an application, it's associated PID killed by it directly. As Android is nothing but Linux, it sends SIG9 (9 number signal is "kill")/ kill (Application's PID) to kill application without invoking it's callback methods.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top