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.

Public Method Summary

abstract void
onAppEvent(String name, String data)
Called when an app event occurs.

Public Methods

public abstract void onAppEvent (String name, String data)

Called when an app event occurs.

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