-
public interface ActivityEventListener
Listener for receiving activity events. Consider using BaseActivityEventListener if you're not interested in all the events sent to this interface.
-
-
Method Summary
Modifier and Type Method Description abstract void
onActivityResult(Activity activity, int requestCode, int resultCode, @Nullable() Intent data)
Called when host (activity/service) receives an onActivityResult call. abstract void
onNewIntent(Intent intent)
Called when a new intent is passed to the activity -
-
Method Detail
-
onActivityResult
abstract void onActivityResult(Activity activity, int requestCode, int resultCode, @Nullable() Intent data)
Called when host (activity/service) receives an onActivityResult call.
-
onNewIntent
abstract void onNewIntent(Intent intent)
Called when a new intent is passed to the activity
-
-
-
-