public final class FragmentEP extends Object
AndroidEntryPointLocator
Modifier and Type | Field and Description |
---|---|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onActivityCreated
tells the fragment that its activity has completed its own Activity.onCreate().
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onActivityResult |
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onAttach
called once the fragment is associated with its activity.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onConfigurationChanged
Unlike activities, other components are never restarted.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onContextItemSelected
This hook is called whenever an item in a context menu is selected.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onCreate
called to do initial creation of the fragment.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onCreateAnimator
Called when a fragment loads an animation.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onCreateContextMenu
Called when a context menu for the view is about to be shown.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onCreateOptionsMenu
Initialize the contents of the Activity's standard options menu.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onCreateView
creates and returns the view hierarchy associated with the fragment.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onDestroy
called to do final cleanup of the fragment's state.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onDestroyOptionsMenu
Called when this fragment's option menu items are no longer being included in the overall options menu.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onDestroyView
allows the fragment to clean up resources associated with its View.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onDetach
called immediately prior to the fragment no longer being associated with its activity.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onHiddenChanged
Called when the hidden state has changed.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onInflate
Called when a fragment is being created as part of a view layout inflation, typically from setting the content view of an
activity.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onLowMemory |
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onOptionsItemSelected |
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onOptionsMenuClosed |
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onPause
fragment is no longer interacting with the user either because its activity is being paused or a fragment operation
is modifying it in the activity.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onPrepareOptionsMenu
This is called right before the menu is shown, every time it is shown.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onResume
makes the fragment interacting with the user (based on its containing activity being resumed).
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onSaveInstanceState
Called to ask the fragment to save its current dynamic state.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onStart
makes the fragment visible to the user (based on its containing activity being started).
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onStop
fragment is no longer visible to the user either because its activity is being stopped or a fragment operation is
modifying it in the activity.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onTrimMemory |
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onViewCreated
Called immediately after onCreateView has returned, but before any saved state has been restored in to the view.
|
static AndroidEntryPointLocator.AndroidPossibleEntryPoint |
onViewStateRestored
tells the fragment that all of the saved state of its view hierarchy has been restored.
|
Constructor and Description |
---|
FragmentEP() |
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 onAttach
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onCreate
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onCreateView
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onActivityCreated
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onViewStateRestored
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onStart
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onResume
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onPause
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onStop
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onDestroyView
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onDestroy
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onDetach
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onActivityResult
ActivityEP.onActivityResult
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onConfigurationChanged
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onContextItemSelected
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onCreateAnimator
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onCreateContextMenu
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onCreateOptionsMenu
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onDestroyOptionsMenu
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onHiddenChanged
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onInflate
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onLowMemory
ActivityEP.onLowMemory
,
ApplicationEP.onLowMemory
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onOptionsItemSelected
ActivityEP.onOptionsItemSelected
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onOptionsMenuClosed
ActivityEP.onOptionsMenuClosed
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onPrepareOptionsMenu
ActivityEP.onPrepareOptionsMenu
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onSaveInstanceState
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onTrimMemory
ActtivityEP.onTrimMemory
public static final AndroidEntryPointLocator.AndroidPossibleEntryPoint onViewCreated
public static void populate(List<? super AndroidEntryPointLocator.AndroidPossibleEntryPoint> possibleEntryPoints)
possibleEntryPoints
- the list to extend.