Package io.cobrowse
Interface CobrowseIO.SessionControlsDelegate
- All Superinterfaces:
CobrowseIO.Delegate,Session.Listener
- Enclosing class:
- CobrowseIO
Implement this interface on your delegate to get callbacks for when to show or hide your
custom session indicators and controls.
-
Method Summary
Modifier and TypeMethodDescriptionvoidhideSessionControls(android.app.Activity activity, Session session) Called when session controls should be hidden.voidshowSessionControls(android.app.Activity activity, Session session) Called when session controls should be shown.Methods inherited from interface io.cobrowse.Session.Listener
sessionDidEnd, sessionDidUpdate
-
Method Details
-
showSessionControls
Called when session controls should be shown. Note: may be called multiple times.- Parameters:
activity- The current Activitysession- The current Session
-
hideSessionControls
Called when session controls should be hidden.- Parameters:
activity- The current Activitysession- The current Session
-