Example usage for Java android.content ComponentCallbacks2 fields, constructors, methods, implement or subclass
The text is from its open source code.
int | TRIM_MEMORY_COMPLETE 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. |
int | TRIM_MEMORY_MODERATE 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. |
int | TRIM_MEMORY_BACKGROUND Level for #onTrimMemory(int) : the process has gone on to the LRU list. |
int | TRIM_MEMORY_UI_HIDDEN Level for #onTrimMemory(int) : the process had been showing a user interface, and is no longer doing so. |
int | TRIM_MEMORY_RUNNING_CRITICAL 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. |
int | TRIM_MEMORY_RUNNING_LOW Level for #onTrimMemory(int) : the process is not an expendable background process, but the device is running low on memory. |
int | TRIM_MEMORY_RUNNING_MODERATE Level for #onTrimMemory(int) : the process is not an expendable background process, but the device is running moderately low on memory. |