-
- All Implemented Interfaces:
public enum CameraScreenEventEvents triggered on the camera screen.
If you use the Screen API all events will be triggered automatically.
If you use the Component API some events will not be triggered (for ex. events which rely on onBackPressed). You need to check whether all the events you are interested in are triggered.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXITTriggers when the user presses back.(Screen API only)
HELPTriggers when the user opens the help screen.(Screen API only)
TAKE_PICTURETriggers when the user takes a picture.(Screen API + Component API)
-
Method Summary
Modifier and Type Method Description static Array<CameraScreenEvent>values()Returns an array containing the constants of this enum type, in the order they're declared. static CameraScreenEventvalueOf(String name)Returns the enum constant of this type with the specified name. -
-
Method Detail
-
values
static Array<CameraScreenEvent> values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.
-
valueOf
static CameraScreenEvent valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
-
-
-