java.lang.Object | |
↳ | com.facebook.common.activitylistener.BaseActivityListener |
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
com.facebook.common.activitylistener.ActivityListener
|
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
BaseActivityListener() |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
int |
getPriority()
Listeners are fired in order of priority.
| ||||||||||
void |
onActivityCreate(Activity activity)
Called by the Activity base class after the Activity's
onActivityCreate method has
run. | ||||||||||
void |
onDestroy(Activity activity)
Called by the Activity base class from the
onDestroy() method. | ||||||||||
void |
onPause(Activity activity)
Called by the Activity base class from the
onPause() method. | ||||||||||
void |
onResume(Activity activity)
Called by the Activity base class from the
onResume() method. | ||||||||||
void |
onStart(Activity activity)
Called by the Activity base class from the
onStart() method. | ||||||||||
void |
onStop(Activity activity)
Called by the Activity base class from the
onStop() method. |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
com.facebook.common.activitylistener.ActivityListener
|
Listeners are fired in order of priority. Listeners with higher priority are fired first.
Called by the Activity base class after the Activity's onActivityCreate
method has
run.
activity | the activity |
---|
Called by the Activity base class from the onDestroy()
method.
activity | the activity |
---|
Called by the Activity base class from the onPause()
method.
activity | the activity |
---|
Called by the Activity base class from the onResume()
method.
activity | the activity |
---|
Called by the Activity base class from the onStart()
method.
activity | the activity |
---|
Called by the Activity base class from the onStop()
method.
activity | the activity |
---|