ComponentCallbacks2
public
interface
ComponentCallbacks2
implements
ComponentCallbacks
android.content.ComponentCallbacks2 |
Callbacks for app state transitions that can be used to improve background memory management.
This interface is available in all application components (Activity
, Service
, ContentProvider
, and Application
).
You should implement onTrimMemory(int)
to release memory when your app goes to background
states. Doing so helps the system keep your app's process cached in memory for longer, such that
the next time that the user brings your app to the foreground, the app will perform a warm or hot start, resuming faster and
retaining state.
Trim memory levels and how to handle them
TRIM_MEMORY_UI_HIDDEN
Your app's UI is no longer visible. This is a good time to release large memory allocations that are used only by your UI, such asBitmaps
, or resources related to video playback or animations.TRIM_MEMORY_BACKGROUND
Your app's process is considered to be in the background, and has become eligible to be killed in order to free memory for other processes. Releasing more memory will prolong the time that your process can remain cached in memory. An effective strategy is to release resources that can be re-built when the user returns to your app.
Apps that continue to do work for the user when they're not visible can respond to the TRIM_MEMORY_UI_HIDDEN
callback by changing their behavior to favor lower memory usage. For
example, a music player may keep full-sized album art for all tracks in the currently playing
playlist as Bitmaps cached in memory. When the app is backgrounded but music playback continues,
the app can change the caching behavior to cache fewer, or smaller, Bitmaps in memory.
The ordinal values for trim levels represent an escalating series of memory pressure events,
with incrementing values accordingly. More states may be added in the future. As such, it's
important not to check for specific values, but rather check if the level passed to onTrimMemory(int)
is greater than or equal to the levels that your application handles. For example:
public void onTrimMemory(int level) {
if (level >= TRIM_MEMORY_BACKGROUND) {
// Release any resources that can be rebuilt
// quickly when the app returns to the foreground
releaseResources();
} else if (level >= TRIM_MEMORY_UI_HIDDEN) {
// Release UI-related resources
releaseUiResources();
}
}
Note: the runtime may invoke Garbage Collection (GC) in response to application state changes. There is no need to explicitly invoke GC from your app.
Summary
Constants | |
---|---|
int |
TRIM_MEMORY_BACKGROUND
Level for |
int |
TRIM_MEMORY_COMPLETE
This constant was deprecated in API level 35. Apps are not notified of this level since API level 34 |
int |
TRIM_MEMORY_MODERATE
This constant was deprecated in API level 35. Apps are not notified of this level since API level 34 |
int |
TRIM_MEMORY_RUNNING_CRITICAL
This constant was deprecated in API level 35. Apps are not notified of this level since API level 34 |
int |
TRIM_MEMORY_RUNNING_LOW
This constant was deprecated in API level 35. Apps are not notified of this level since API level 34 |
int |
TRIM_MEMORY_RUNNING_MODERATE
This constant was deprecated in API level 35. Apps are not notified of this level since API level 34 |
int |
TRIM_MEMORY_UI_HIDDEN
Level for |
Public methods | |
---|---|
abstract
void
|
onTrimMemory(int level)
Called when the operating system has determined that it is a good time for a process to trim unneeded memory from its process. |
Inherited methods | |
---|---|
Constants
TRIM_MEMORY_BACKGROUND
public static final int TRIM_MEMORY_BACKGROUND
Level for onTrimMemory(int)
: the process has gone on to the
LRU list. This is a good opportunity to clean up resources that can
efficiently and quickly be re-built if the user returns to the app.
Constant Value: 40 (0x00000028)
TRIM_MEMORY_COMPLETE
public static final int TRIM_MEMORY_COMPLETE
This constant was deprecated
in API level 35.
Apps are not notified of this level since API level 34
Level for onTrimMemory(int)
: the process is nearing the end
of the background LRU list, and if more memory isn't found soon it will
be killed.
Constant Value: 80 (0x00000050)
TRIM_MEMORY_MODERATE
public static final int TRIM_MEMORY_MODERATE
This constant was deprecated
in API level 35.
Apps are not notified of this level since API level 34
Level for onTrimMemory(int)
: the process is around the middle
of the background LRU list; freeing memory can help the system keep
other processes running later in the list for better overall performance.
Constant Value: 60 (0x0000003c)
TRIM_MEMORY_RUNNING_CRITICAL
public static final int TRIM_MEMORY_RUNNING_CRITICAL
This constant was deprecated
in API level 35.
Apps are not notified of this level since API level 34
Level for onTrimMemory(int)
: the process is not an expendable
background process, but the device is running extremely low on memory
and is about to not be able to keep any background processes running.
Your running process should free up as many non-critical resources as it
can to allow that memory to be used elsewhere. The next thing that
will happen after this is ComponentCallbacks.onLowMemory()
called to report that
nothing at all can be kept in the background, a situation that can start
to notably impact the user.
Constant Value: 15 (0x0000000f)
TRIM_MEMORY_RUNNING_LOW
public static final int TRIM_MEMORY_RUNNING_LOW
This constant was deprecated
in API level 35.
Apps are not notified of this level since API level 34
Level for onTrimMemory(int)
: the process is not an expendable
background process, but the device is running low on memory.
Your running process should free up unneeded resources to allow that
memory to be used elsewhere.
Constant Value: 10 (0x0000000a)
TRIM_MEMORY_RUNNING_MODERATE
public static final int TRIM_MEMORY_RUNNING_MODERATE
This constant was deprecated
in API level 35.
Apps are not notified of this level since API level 34
Level for onTrimMemory(int)
: the process is not an expendable
background process, but the device is running moderately low on memory.
Your running process may want to release some unneeded resources for
use elsewhere.
Constant Value: 5 (0x00000005)
TRIM_MEMORY_UI_HIDDEN
public static final int TRIM_MEMORY_UI_HIDDEN
Level for onTrimMemory(int)
: the process had been showing
a user interface, and is no longer doing so. Large allocations with
the UI should be released at this point to allow memory to be better
managed.
Constant Value: 20 (0x00000014)
Public methods
onTrimMemory
public abstract void onTrimMemory (int level)
Called when the operating system has determined that it is a good time for a process to trim unneeded memory from its process. You should never compare to exact values of the level, since new intermediate values may be added -- you will typically want to compare if the value is greater or equal to a level you are interested in.
To retrieve the processes current trim level at any point, you can
use ActivityManager.getMyMemoryState(RunningAppProcessInfo)
.
Parameters | |
---|---|
level |
int : The context of the trim, giving a hint of the amount of
trimming the application may like to perform.
Value is TRIM_MEMORY_COMPLETE , TRIM_MEMORY_MODERATE , TRIM_MEMORY_BACKGROUND , TRIM_MEMORY_UI_HIDDEN , TRIM_MEMORY_RUNNING_CRITICAL , TRIM_MEMORY_RUNNING_LOW , or TRIM_MEMORY_RUNNING_MODERATE |