/**@class android.app.Application.ActivityLifecycleCallbacks */ var ActivityLifecycleCallbacks = { /**Called as the first step of the Activity being created. This is always called before {@link android.app.Activity#onCreate}. */ onActivityPreCreated : function( ) {}, /**Called when the Activity calls {@link android.app.Activity#onCreate super.onCreate()}. */ onActivityCreated : function( ) {}, /**Called as the last step of the Activity being created. This is always called after {@link android.app.Activity#onCreate}. */ onActivityPostCreated : function( ) {}, /**Called as the first step of the Activity being started. This is always called before {@link android.app.Activity#onStart}. */ onActivityPreStarted : function( ) {}, /**Called when the Activity calls {@link android.app.Activity#onStart super.onStart()}. */ onActivityStarted : function( ) {}, /**Called as the last step of the Activity being started. This is always called after {@link android.app.Activity#onStart}. */ onActivityPostStarted : function( ) {}, /**Called as the first step of the Activity being resumed. This is always called before {@link android.app.Activity#onResume}. */ onActivityPreResumed : function( ) {}, /**Called when the Activity calls {@link android.app.Activity#onResume super.onResume()}. */ onActivityResumed : function( ) {}, /**Called as the last step of the Activity being resumed. This is always called after {@link android.app.Activity#onResume} and {@link android.app.Activity#onPostResume}. */ onActivityPostResumed : function( ) {}, /**Called as the first step of the Activity being paused. This is always called before {@link android.app.Activity#onPause}. */ onActivityPrePaused : function( ) {}, /**Called when the Activity calls {@link android.app.Activity#onPause super.onPause()}. */ onActivityPaused : function( ) {}, /**Called as the last step of the Activity being paused. This is always called after {@link android.app.Activity#onPause}. */ onActivityPostPaused : function( ) {}, /**Called as the first step of the Activity being stopped. This is always called before {@link android.app.Activity#onStop}. */ onActivityPreStopped : function( ) {}, /**Called when the Activity calls {@link android.app.Activity#onStop super.onStop()}. */ onActivityStopped : function( ) {}, /**Called as the last step of the Activity being stopped. This is always called after {@link android.app.Activity#onStop}. */ onActivityPostStopped : function( ) {}, /**Called as the first step of the Activity saving its instance state. This is always called before {@link android.app.Activity#onSaveInstanceState}. */ onActivityPreSaveInstanceState : function( ) {}, /**Called when the Activity calls {@link android.app.Activity#onSaveInstanceState super.onSaveInstanceState()}. */ onActivitySaveInstanceState : function( ) {}, /**Called as the last step of the Activity saving its instance state. This is always called after{@link android.app.Activity#onSaveInstanceState}. */ onActivityPostSaveInstanceState : function( ) {}, /**Called as the first step of the Activity being destroyed. This is always called before {@link android.app.Activity#onDestroy}. */ onActivityPreDestroyed : function( ) {}, /**Called when the Activity calls {@link android.app.Activity#onDestroy super.onDestroy()}. */ onActivityDestroyed : function( ) {}, /**Called as the last step of the Activity being destroyed. This is always called after {@link android.app.Activity#onDestroy}. */ onActivityPostDestroyed : function( ) {}, };