Interface FloatingButtonEventListener
-
- All Implemented Interfaces:
-
com.adobe.marketing.mobile.services.ui.PresentationEventListener
public interface FloatingButtonEventListener implements PresentationEventListener<FloatingButton>
Interface for listening to events on a floating button presentation.
-
-
Method Summary
Modifier and Type Method Description abstract UnitonTapDetected(Presentable<FloatingButton> presentable)Called when a tap is detected on the floating button. abstract UnitonPanDetected(Presentable<FloatingButton> presentable)Called when a pan is detected on the floating button. -
-
Method Detail
-
onTapDetected
abstract Unit onTapDetected(Presentable<FloatingButton> presentable)
Called when a tap is detected on the floating button.
- Parameters:
presentable- the floating button presentable on which the tap was detected
-
onPanDetected
abstract Unit onPanDetected(Presentable<FloatingButton> presentable)
Called when a pan is detected on the floating button.
- Parameters:
presentable- the floating button presentable on which the pan was detected
-
-
-
-