Page Summary
-
This interface is deprecated and users should use
VideosClient.OnCaptureOverlayStateListenerinstead. -
This listener notifies about user interactions with the video capture overlay, such as starting/stopping capture or dismissing the overlay.
-
The
onCaptureOverlayStateChangedmethod is called when the capture overlay state changes, providing the current state as an integer parameter.
| Known Indirect Subclasses |
This interface is deprecated.
Use
VideosClient.OnCaptureOverlayStateListener instad.
Listener that will notify about key user interactions with the overlay, such as
starting/stopping capture or dismissing the overlay. Provide an instance of this interface to
Videos.registerCaptureOverlayStateChangedListener(GoogleApiClient,
Videos.CaptureOverlayStateListener) to receive callbacks.
Public Method Summary
| abstract void |
onCaptureOverlayStateChanged(int overlayState)
Called when the capture overlay state changes.
|
Public Methods
public abstract void onCaptureOverlayStateChanged (int overlayState)
Called when the capture overlay state changes.
Parameters
| overlayState | The current capture overlay state. Possible values include:
Videos.CAPTURE_OVERLAY_STATE_SHOWN,
Videos.CAPTURE_OVERLAY_STATE_CAPTURE_STARTED,
Videos.CAPTURE_OVERLAY_STATE_CAPTURE_STOPPED,
Videos.CAPTURE_OVERLAY_STATE_DISMISSED. |
|---|