L.J.W
L.J.W

Reputation: 1595

How to simulate killing activity to conserve memory?

Android doc say:

"When the system, rather than the user, shuts down an activity to conserve memory, ... "

But how to simulate this situation?I want to debug the onRestoreInstanceState(Bundle) method,but don't know how to.

Upvotes: 42

Views: 15932

Answers (8)

Wookie
Wookie

Reputation: 812

There's a decent solution for this in Android 6 and newer. See my answer here: Simulate killing of activity in emulator

Upvotes: 0

Johnny C
Johnny C

Reputation: 1847

Good answers here.

Now, residing in the distant future, using Instant Run in Android Studio will also trigger a save and restore when activities are restarted with code changes.

Upvotes: 1

heloisasim
heloisasim

Reputation: 5016

There's two way to simulate the android killing process: using the setting "Don't keep activities" in developer settings or killing the app process by yourself.

To kill the process, open the activity you want to test, then press home button to send your app to background, and then, using the DDMS in Android Studio (Android Device Monitor), select the process and then stop the process (as seen in the image below). Your app was killed. Now, open your app again (accessing the list of open apps). Now you can test the killed state.

enter image description here

Upvotes: 13

aschmied
aschmied

Reputation: 986

I've used the "Don't keep activities" developer option to reproduce a crash that happened when an activity was killed due to memory pressure. You can find it in the Apps section of Settings->Developer Options.

It destroys every activity as soon as you leave it. E.g. if you press home to put your app in the background the current activity is destroyed. See https://stackoverflow.com/a/22402360/2833126 for more information.

Upvotes: 27

beefeather
beefeather

Reputation: 1040

To debug onRestoreInstanceState you could do the following:

  • make sure you can debug application right after its start (calling android.os.Debug.waitForDebugger() from your constructor helps, it hangs your application until debugger is connected),

  • put you application in some state,

  • causally kill it from Settings->Apps,

  • causally switch back to it through Recent Apps button (it will still be in the list),

  • at this moment your application will be started anew and onRestoreInstanceState will be immediately called on the top activity.

Upvotes: 4

Theo
Theo

Reputation: 6083

Use the SetAlwaysFinish app (works on a real device and in the emulator) or use the Google DevTools app (works in the emulator only).

These apps use the hidden AlwaysFinish setting of the ActivityManagerNative class to change the behavior of the OS and cause it to immediate unload every activity as soon as it's no longer in the foreground. This will reliably trigger the onSaveInstanceState and onRestoreInstanceState events.

See link below for more details: http://bricolsoftconsulting.com/how-to-test-onsaveinstancestate-and-onrestoreinstancestate-on-a-real-device/

Upvotes: 4

numan salati
numan salati

Reputation: 19494

You can't do it in an automated way b/c its completely non deterministic.

See my answer here: https://stackoverflow.com/a/15048112/909956 for details.

But good news is that all you need to do is just simulate calling onSaveInstanceState and you are indirectly testing this low memory situation.

onSaveInstanceState can be triggered by:

  1. losing focus (by pressing home which in essence is like switching from your app to launcher app), launching another activity, pressing recents
  2. changing orientation. this is the easier way if you are using an emulator
  3. changing developer setting: goto developer options --> Apps --> Don't keep activities. This is best option if you are testing temporarily on an actual device.

Upvotes: 35

CommonsWare
CommonsWare

Reputation: 1006674

For the purposes of debugging onRestoreInstanceState(), just change the screen orientation ([Ctrl]-[F11] in the emulator). Your activity will be destroyed and recreated, and the onSaveInstanceState()/onRestoreInstanceState() pair will be invoked.

Upvotes: 10

Related Questions