Package arc.backend.android
Interface AndroidApplication.AndroidEventListener
- Enclosing class:
- AndroidApplication
public static interface AndroidApplication.AndroidEventListener
A listener for special Android events such onActivityResult(...). This can be used by e.g. extensions to plug into the Android
system.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onActivityResult
(int resultCode, android.content.Intent data) Will be called if the application's onActivityResult(...) method is called.
-
Method Details
-
onActivityResult
void onActivityResult(int resultCode, android.content.Intent data) Will be called if the application's onActivityResult(...) method is called.
-