public final class ApplicationEP extends Object
AndroidEntryPointLocator
Modifier and Type | Field and Description |
---|---|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onConfigurationChanged
Called by the system when the device configuration changes while your component is running.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onCreate
Called when the application is starting, before any activity, service, or receiver objects (excluding content providers) have been created.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onLowMemory
This is called when the overall system is running low on memory, and actively running processes should trim their memory usage.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onTrimMemory
Called when the operating system has determined that it is a good time for a process to trim unneeded memory from its process.
|
Constructor and Description |
---|
ApplicationEP() |
Modifier and Type | Method and Description |
---|---|
static void |
populate(List<? super AndroidEntryPointLocator.AndroidPossibleEntryPoint> possibleEntryPoints)
Add the EntryPoint specifications defined in this file to the given list.
|
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onCreate
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onConfigurationChanged
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onLowMemory
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onTrimMemory
public static void populate(List<? super AndroidEntryPointLocator.AndroidPossibleEntryPoint> possibleEntryPoints)
possibleEntryPoints
- the list to extend.