AppEventListener

public interface AppEventListener


A listener interface for app events triggered by ads. App events allow JavaScript within an ad to trigger events in the application. The ad can trigger the app event with a name and optional data. It is then up to the application to decide how to handle the event.

Summary

Public methods

abstract void
onAppEvent(String name, String data)

Called when an app event occurs.

Public methods

onAppEvent

abstract void onAppEvent(String name, String data)

Called when an app event occurs.

Parameters
String name

The name of the app event.

String data

Extra data included with the app event. The data can be null.