Methods in com.revmob with parameters of type RevMobAdsListener |
RevMobLink |
RevMob.createAdLink(android.app.Activity activity,
RevMobAdsListener listener)
RevMob.createAdLink(Activity, String, RevMobAdsListener) |
RevMobLink |
RevMob.createAdLink(android.app.Activity activity,
String placementId,
RevMobAdsListener listener)
Create and load a ad Link to be opened manually in the future, by calling its method ad.open();
Example of usage:
Link ad = revmob.createAdLink(this, null, null);
ad.open(); |
RevMobBanner |
RevMob.createBanner(android.app.Activity activity,
RevMobAdsListener listener)
RevMob.createBanner(Activity, String, RevMobAdsListener) |
RevMobBanner |
RevMob.createBanner(android.app.Activity activity,
String placementId,
RevMobAdsListener listener)
Create and load a Banner ad
Example of usage:
Banner ad = revmob.createBanner(this, null, null);
addContentView(ad); |
RevMobFullscreen |
RevMob.createFullscreen(android.app.Activity activity,
RevMobAdsListener listener)
RevMob.createFullscreen(Activity, String, RevMobAdsListener) |
RevMobFullscreen |
RevMob.createFullscreen(android.app.Activity activity,
String placementId,
RevMobAdsListener listener)
Create and load a Fullscreen ad to be show manually in the future, by calling its method ad.show();
Example of usage:
Fullscreen ad = revmob.createFullscreen(this, null, null);
ad.show(); |
RevMobPopup |
RevMob.createPopup(android.app.Activity activity,
RevMobAdsListener listener)
RevMob.createPopup(Activity, String, RevMobAdsListener) |
RevMobPopup |
RevMob.createPopup(android.app.Activity activity,
String placementId,
RevMobAdsListener listener)
Create and load a Popup ad to be show manually in the future, by calling its method ad.show();
Example of usage: |
void |
RevMob.openAdLink(android.app.Activity activity,
RevMobAdsListener listener)
RevMob.openAdLink(Activity, String, RevMobAdsListener) |
void |
RevMob.openAdLink(android.app.Activity activity,
String placementId,
RevMobAdsListener listener)
Create and load ad Link in a background thread. |
RevMobNotification |
RevMob.scheduleNotification(android.app.Activity activity,
int iconDrawable,
String placementId,
RevMobAdsListener listener)
RevMob.scheduleNotification(Activity activity, int drawableIcon, String placementId, RevMobAdsListener, Calendar) |
RevMobNotification |
RevMob.scheduleNotification(android.app.Activity activity,
int iconDrawable,
String placementId,
RevMobAdsListener listener,
Calendar fireDate)
Create, load and schedule a Notification ad. |
void |
RevMob.showPopup(android.app.Activity activity,
String placementId,
RevMobAdsListener listener)
Create and load Popup ad in a background thread. |