Package com.my.target.instreamads
Interface InstreamAdVideoMotionPlayer.VideoMotionPlayerListener
-
- All Implemented Interfaces:
public interface InstreamAdVideoMotionPlayer.VideoMotionPlayerListenerCalls from this listener must be implemented in videoplayer for calculating video ad statistics
-
-
Method Summary
Modifier and Type Method Description abstract voidonBannerComplete(@NonNull() Context context)Should be called when on videoMotionBanner has completed abstract voidonBannerShow(@NonNull() Context context)Should be called when videoMotionData has showed abstract voidonCloseByUser(@NonNull() Context context)Should be called when on videoMotionBanner has closed by user abstract voidonError(@NonNull() String message, @NonNull() Context context)Should be called when happened some error with videoMotionBanner abstract voidonHeaderClick(@NonNull() Context context)Should be called when on VideoMotionHeader has clicked abstract voidonItemClick(@NonNull() String id, @NonNull() Context context)Should be called when on videoMotionItem has clicked abstract voidonItemShow(@NonNull() String id, @NonNull() Context context)Should be called when videoMotionItem has showed -
-
Method Detail
-
onBannerComplete
abstract void onBannerComplete(@NonNull() Context context)
Should be called when on videoMotionBanner has completed
- Parameters:
context- Context.
-
onBannerShow
abstract void onBannerShow(@NonNull() Context context)
Should be called when videoMotionData has showed
- Parameters:
context- Context.
-
onCloseByUser
abstract void onCloseByUser(@NonNull() Context context)
Should be called when on videoMotionBanner has closed by user
- Parameters:
context- Context.
-
onError
abstract void onError(@NonNull() String message, @NonNull() Context context)
Should be called when happened some error with videoMotionBanner
- Parameters:
message- Error message.context- Context.
-
onHeaderClick
abstract void onHeaderClick(@NonNull() Context context)
Should be called when on VideoMotionHeader has clicked
- Parameters:
context- Context.
-
onItemClick
abstract void onItemClick(@NonNull() String id, @NonNull() Context context)
Should be called when on videoMotionItem has clicked
- Parameters:
id- Item's id.context- Context.
-
onItemShow
abstract void onItemShow(@NonNull() String id, @NonNull() Context context)
Should be called when videoMotionItem has showed
- Parameters:
id- Item's id.context- Context.
-
-
-
-