EventTracker

public interface EventTracker

Implement this interface and pass it to the setEventTracker to get informed about various events occuring during the usage of the Gini Vision Library.

Check each event enum to find out which events are triggered on the different screens.

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.

Functions

onAnalysisScreenEvent
Link copied to clipboard
abstract void onAnalysisScreenEvent(Event<AnalysisScreenEvent> event)
Called when an event is triggered on the analysis screen.
onCameraScreenEvent
Link copied to clipboard
abstract void onCameraScreenEvent(Event<CameraScreenEvent> event)
Called when an event is triggered on the camera screen.
onOnboardingScreenEvent
Link copied to clipboard
abstract void onOnboardingScreenEvent(Event<OnboardingScreenEvent> event)
Called when an event is triggered on the onboarding screen.
onReviewScreenEvent
Link copied to clipboard
abstract void onReviewScreenEvent(Event<ReviewScreenEvent> event)
Called when an event is triggered on the review screen.