-
public interface HyprMXBannerListenerListener for common load and interaction events
-
-
Method Summary
Modifier and Type Method Description abstract UnitonAdClicked(HyprMXBannerView view)A click event has occurred on the banner abstract UnitonAdOpened(HyprMXBannerView view)The click event on the banner has transition to an overlay abstract UnitonAdClosed(HyprMXBannerView view)The opened overlay has been dismissed abstract UnitonAdLeftApplication(HyprMXBannerView view)The click event on the banner will open a third party application to process the click abstract UnitonAdImpression(HyprMXBannerView view)The impression event on the banner when the banner is considered visible and impressed. -
-
Method Detail
-
onAdClicked
abstract Unit onAdClicked(HyprMXBannerView view)
A click event has occurred on the banner
- Parameters:
view- The HyprMXBannerView that had the click event
-
onAdOpened
abstract Unit onAdOpened(HyprMXBannerView view)
The click event on the banner has transition to an overlay
- Parameters:
view- The HyprMXBannerView that had the open event
-
onAdClosed
abstract Unit onAdClosed(HyprMXBannerView view)
The opened overlay has been dismissed
- Parameters:
view- The HyprMXBannerView that had the close event
-
onAdLeftApplication
@Deprecated(message = This callback will be removed on a future SDK release. Use the app's lifecycle or the activity's lifecycle events as alternative.) abstract Unit onAdLeftApplication(HyprMXBannerView view)
The click event on the banner will open a third party application to process the click
- Parameters:
view- The HyprMXBannerView that had the left application event
-
onAdImpression
abstract Unit onAdImpression(HyprMXBannerView view)
The impression event on the banner when the banner is considered visible and impressed.
- Parameters:
view- The HyprMXBannerView that had the impression event
-
-
-
-