Interface IntentCreationListener
-
- All Implemented Interfaces:
public interface IntentCreationListenerThe IntentCreationListener which listens for the creation of an intent.
- This listener can be added on the FullScreenManager by using the addFullScreenIntentCreationListener method.
-
-
Method Summary
Modifier and Type Method Description abstract voidonCreateIntent(Intent intent)Called when the intent is created. -
-
Method Detail
-
onCreateIntent
abstract void onCreateIntent(Intent intent)
Called when the intent is created.
- This method can be used to pass extra parameters to the intent.
- Parameters:
intent- The newly created intent.
-
-
-
-