Stage
public
final
enum
Stage
extends Enum<Stage>
java.lang.Object | ||
↳ | java.lang.Enum<android.support.test.runner.lifecycle.Stage> | |
↳ | android.support.test.runner.lifecycle.Stage |
An enumeration of the lifecycle stages an activity undergoes.
See the Activity
javadoc for detailed documentation.
Summary
Enum values | |
---|---|
Stage |
CREATED
Indicates that onCreate has been called. |
Stage |
DESTROYED
Indicates that onDestroy has been called - system is shutting down the activity. |
Stage |
PAUSED
Indicates that onPause has been called - activity is no longer in the foreground. |
Stage |
PRE_ON_CREATE
Indicates that onCreate is being called before any onCreate code executes. |
Stage |
RESTARTED
Indicates that onResume has been called - we have navigated back to the activity. |
Stage |
RESUMED
Indicates that onResume has been called - activity is now visible to user. |
Stage |
STARTED
Indicates that onStart has been called. |
Stage |
STOPPED
Indicates that onStop has been called - activity is no longer visible to the user. |
Inherited methods | |
---|---|
![]()
java.lang.Enum
| |
![]()
java.lang.Object
| |
![]()
java.lang.Comparable
|
Enum values
DESTROYED
Stage DESTROYED
Indicates that onDestroy has been called - system is shutting down the activity.
PAUSED
Stage PAUSED
Indicates that onPause has been called - activity is no longer in the foreground.
PRE_ON_CREATE
Stage PRE_ON_CREATE
Indicates that onCreate is being called before any onCreate code executes.
RESTARTED
Stage RESTARTED
Indicates that onResume has been called - we have navigated back to the activity.
STOPPED
Stage STOPPED
Indicates that onStop has been called - activity is no longer visible to the user.