java.lang.Object | |
↳ | com.inmobi.ads.listeners.InterstitialAdEventListener |
Listener for receiving notifications during the lifecycle of an interstitial.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Called to indicate that an ad interaction was observed.
| |||||||||||
Called to indicate that the fullscreen overlay opened by the ad was closed.
| |||||||||||
Called to indicate that a request to show an ad (by calling
show()
failed. | |||||||||||
Called to indicate that the fullscreen overlay is now the topmost screen.
| |||||||||||
Callback to signal that a request to fetch an ad (by calling
load() failed. | |||||||||||
Called to indicate that an ad was loaded and it can now be shown.
| |||||||||||
Called to indicate that an ad is available in response to a request for an ad (by calling
load() . | |||||||||||
Called to indicate that the ad will be launching a fullscreen overlay.
| |||||||||||
Called to notify when the request payload is created
| |||||||||||
Called to notify when the request payload creation fails
| |||||||||||
Called to indicate that rewards have been unlocked.
| |||||||||||
Called to indicate that the user may leave the application on account of interacting with the ad.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Called to indicate that an ad interaction was observed.
ad | Represents the InMobiInterstitial ad on which user clicked |
---|---|
params | Represents the click parameters |
Called to indicate that the fullscreen overlay opened by the ad was closed.
ad | Represents the InMobiInterstitial ad which was dismissed
|
---|
Called to indicate that a request to show an ad (by calling show()
failed. You should call load()
to request for a fresh ad.
ad | Represents the InMobiInterstitial ad which failed to show
|
---|
Called to indicate that the fullscreen overlay is now the topmost screen.
ad | Represents the InMobiInterstitial ad which is displayed
|
---|
Callback to signal that a request to fetch an ad (by calling
load()
failed. The status code indicating the reason for failure
is available as a parameter. You should call load()
again to
request a fresh ad.
ad | Represents the InMobiInterstitial ad which failed to load |
---|---|
status | Represents the InMobiAdRequestStatus status containing error reason
|
Called to indicate that an ad was loaded and it can now be shown. This will always be called
after the onAdReceived(InMobiInterstitial)
callback.
ad | Represents the InMobiInterstitial ad which was loaded
|
---|
Called to indicate that an ad is available in response to a request for an ad (by calling
load()
.
Note This does not
indicate that the ad can be shown yet. Your code should show an ad after the
onAdLoadSucceeded(InMobiInterstitial)
method is called. Alternately, if you do not
want to handle this event, you must test if the ad is ready to be shown by checking the
result of calling the isReady()
method.
ad | Represents the InMobiInterstitial ad for which ad content was received
|
---|
Called to indicate that the ad will be launching a fullscreen overlay.
ad | Represents the InMobiInterstitial ad which will display
|
---|
Called to notify when the request payload is created
requestPayload | Represents the request payload |
---|
Called to notify when the request payload creation fails
status | Represents the InMobiAdRequestStatus status containing error reason
|
---|
Called to indicate that rewards have been unlocked.
ad | Represents the InMobiInterstitial ad for which rewards was unlocked |
---|---|
rewards | Represents the rewards unlocked |
Called to indicate that the user may leave the application on account of interacting with the ad.
ad | Represents the InMobiInterstitial ad
|
---|