A C F G H I L O P R S U V

A

autoopen - Variable in class com.revmob.ads.link.RevMobLink
 
autoshow - Variable in class com.revmob.ads.fullscreen.RevMobFullscreen
 
autoshow - Variable in class com.revmob.ads.popup.RevMobPopup
 

C

cancel() - Method in class com.revmob.ads.link.RevMobLink
If the link was not loaded yet, it will not be opened automatically - The open method can still be called.
cancel() - Method in class com.revmob.ads.notification.RevMobNotification
If the notification was not loaded yet, it will not be scheduled automatically - The schedule method can still be called.
com.revmob - package com.revmob
 
com.revmob.ads.banner - package com.revmob.ads.banner
 
com.revmob.ads.fullscreen - package com.revmob.ads.fullscreen
 
com.revmob.ads.link - package com.revmob.ads.link
 
com.revmob.ads.notification - package com.revmob.ads.notification
 
com.revmob.ads.popup - package com.revmob.ads.popup
 
createAdLink(Activity, RevMobAdsListener) - Method in class com.revmob.RevMob
createAdLink(Activity, String, RevMobAdsListener)
createAdLink(Activity, String, RevMobAdsListener) - Method in class com.revmob.RevMob
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();
createBanner(Activity) - Method in class com.revmob.RevMob
createBanner(Activity, String, RevMobAdsListener)
createBanner(Activity, RevMobAdsListener) - Method in class com.revmob.RevMob
createBanner(Activity, String, RevMobAdsListener)
createBanner(Activity, String) - Method in class com.revmob.RevMob
createBanner(Activity, String, RevMobAdsListener)
createBanner(Activity, String, RevMobAdsListener) - Method in class com.revmob.RevMob
Create and load a Banner ad Example of usage: Banner ad = revmob.createBanner(this, null, null); addContentView(ad);
createFullscreen(Activity, RevMobAdsListener) - Method in class com.revmob.RevMob
createFullscreen(Activity, String, RevMobAdsListener)
createFullscreen(Activity, String, RevMobAdsListener) - Method in class com.revmob.RevMob
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();
createPopup(Activity, RevMobAdsListener) - Method in class com.revmob.RevMob
createPopup(Activity, String, RevMobAdsListener)
createPopup(Activity, String, RevMobAdsListener) - Method in class com.revmob.RevMob
Create and load a Popup ad to be show manually in the future, by calling its method ad.show(); Example of usage:

F

FullscreenActivity - Class in com.revmob.ads.fullscreen
To use this class, you have to include the following code in your AndroidManifest.xml file:
FullscreenActivity() - Constructor for class com.revmob.ads.fullscreen.FullscreenActivity
 

G

getTestingMode() - Method in class com.revmob.RevMob
 
getValue() - Method in enum com.revmob.RevMobTestingMode
 

H

hide() - Method in class com.revmob.ads.fullscreen.RevMobFullscreen
Hide the ad - If it is not loaded, it will not be automatically show after it is loaded.
hide() - Method in class com.revmob.ads.popup.RevMobPopup
Hide the ad - If it is not loaded, it will not be automatically show after it is loaded.

I

isLoaded() - Method in class com.revmob.ads.banner.RevMobBanner
Check if the ad is loaded.
isLoaded() - Method in class com.revmob.ads.fullscreen.RevMobFullscreen
Check if the ad is loaded.
isLoaded() - Method in class com.revmob.ads.link.RevMobLink
Check if the ad is loaded.
isLoaded() - Method in class com.revmob.ads.notification.RevMobNotification
Check if the ad is loaded.
isLoaded() - Method in class com.revmob.ads.popup.RevMobPopup
Check if the ad is loaded.

L

load() - Method in class com.revmob.ads.banner.RevMobBanner
Load the ad data
load(String) - Method in class com.revmob.ads.banner.RevMobBanner
Load the ad data using a placement id.
load() - Method in class com.revmob.ads.fullscreen.RevMobFullscreen
Load the ad data
load(String) - Method in class com.revmob.ads.fullscreen.RevMobFullscreen
Load the ad data using a placement id.
load() - Method in class com.revmob.ads.link.RevMobLink
Load the ad data
load(String) - Method in class com.revmob.ads.link.RevMobLink
Load the ad data using a placement id.
load() - Method in class com.revmob.ads.notification.RevMobNotification
Load the ad data
load(String) - Method in class com.revmob.ads.notification.RevMobNotification
Load the ad data using a placement id.
load() - Method in class com.revmob.ads.popup.RevMobPopup
Load the ad data
load(String) - Method in class com.revmob.ads.popup.RevMobPopup
Load the ad data using a placement id.

O

onConfigurationChanged(Configuration) - Method in class com.revmob.ads.fullscreen.FullscreenActivity
 
onKeyDown(int, KeyEvent) - Method in class com.revmob.ads.fullscreen.FullscreenActivity
 
onRevMobAdClicked() - Method in interface com.revmob.RevMobAdsListener
Called when ad is clicked.
onRevMobAdDismiss() - Method in interface com.revmob.RevMobAdsListener
Called when ad is dismissed.
onRevMobAdDisplayed() - Method in interface com.revmob.RevMobAdsListener
Called when an ad is displayed.
onRevMobAdNotReceived(String) - Method in interface com.revmob.RevMobAdsListener
Called when ad is not received.
onRevMobAdReceived() - Method in interface com.revmob.RevMobAdsListener
Called on ad received.
open() - Method in class com.revmob.ads.link.RevMobLink
Open the ad immediately, unless it is not loaded yet - If it is not loaded, it will open yourself as soon as it is loaded.
openAdLink(Activity, RevMobAdsListener) - Method in class com.revmob.RevMob
openAdLink(Activity, String, RevMobAdsListener)
openAdLink(Activity, String, RevMobAdsListener) - Method in class com.revmob.RevMob
Create and load ad Link in a background thread.
openNotification(Activity) - Static method in class com.revmob.ads.notification.RevMobNotification
Call this method in the onCreate method of the activity that will be opened when the user click in the notification.
openNotification(Activity) - Method in class com.revmob.RevMob
Open a previously scheduled notification.

P

printEnvironmentInformation(Activity) - Method in class com.revmob.RevMob
Print your environment information (about your device, network etc) for debugging purposes.

R

RevMob - Class in com.revmob
Enables your application to retrieve and display RevMob ads.
RevMobAdsListener - Interface in com.revmob
Listens to RevMob ads events.
RevMobBanner - Class in com.revmob.ads.banner
 
RevMobBanner(Activity, RevMobAdsListener) - Constructor for class com.revmob.ads.banner.RevMobBanner
 
RevMobFullscreen - Class in com.revmob.ads.fullscreen
 
RevMobFullscreen(Activity, RevMobAdsListener) - Constructor for class com.revmob.ads.fullscreen.RevMobFullscreen
 
RevMobLink - Class in com.revmob.ads.link
 
RevMobLink(Activity, RevMobAdsListener) - Constructor for class com.revmob.ads.link.RevMobLink
 
RevMobNotification - Class in com.revmob.ads.notification
 
RevMobNotification(Activity, int, RevMobAdsListener, Calendar) - Constructor for class com.revmob.ads.notification.RevMobNotification
 
RevMobPopup - Class in com.revmob.ads.popup
 
RevMobPopup(Activity, RevMobAdsListener) - Constructor for class com.revmob.ads.popup.RevMobPopup
 
RevMobTestingMode - Enum in com.revmob
 

S

schedule() - Method in class com.revmob.ads.notification.RevMobNotification
Schedule the ad immediately, unless it is not loaded yet - If it is not loaded, it will schedule yourself as soon as it is loaded.
scheduleNotification(Activity, int) - Method in class com.revmob.RevMob
scheduleNotification(Activity activity, int drawableIcon, String placementId, RevMobAdsListener, Calendar)
scheduleNotification(Activity, int, String) - Method in class com.revmob.RevMob
scheduleNotification(Activity activity, int drawableIcon, String placementId, RevMobAdsListener, Calendar)
scheduleNotification(Activity, int, String, RevMobAdsListener) - Method in class com.revmob.RevMob
scheduleNotification(Activity activity, int drawableIcon, String placementId, RevMobAdsListener, Calendar)
scheduleNotification(Activity, int, String, RevMobAdsListener, Calendar) - Method in class com.revmob.RevMob
Create, load and schedule a Notification ad.
setTestingMode(RevMobTestingMode) - Method in class com.revmob.RevMob
Use this method to use testing mode:
setTimeoutInSeconds(int) - Method in class com.revmob.RevMob
You can customize the timeout to fetch the ads from the server
show() - Method in class com.revmob.ads.fullscreen.RevMobFullscreen
Shows the ad immediately, unless it is not loaded yet - If it is not loaded, it will show yourself as soon as it is loaded.
show() - Method in class com.revmob.ads.popup.RevMobPopup
Shows the ad immediately, unless it is not loaded yet - If it is not loaded, it will show yourself as soon as it is loaded.
showFullscreen(Activity) - Method in class com.revmob.RevMob
#showFullscreen(Activity, String, RevMobAdsListener)
showFullscreen(Activity, String) - Method in class com.revmob.RevMob
Create and load Fullscreen ad in a background thread.
showPopup(Activity) - Method in class com.revmob.RevMob
showPopup(Activity, String, RevMobAdsListener)
showPopup(Activity, String, RevMobAdsListener) - Method in class com.revmob.RevMob
Create and load Popup ad in a background thread.
start(Activity, String) - Static method in class com.revmob.RevMob
Creates and starts a RevMob session.

U

updateWithData(AdData) - Method in class com.revmob.ads.banner.RevMobBanner
For internal usage.
updateWithData(AdData) - Method in class com.revmob.ads.fullscreen.RevMobFullscreen
For internal usage.
updateWithData(AdData) - Method in class com.revmob.ads.link.RevMobLink
For internal usage.
updateWithData(AdData) - Method in class com.revmob.ads.notification.RevMobNotification
For internal usage.
updateWithData(AdData) - Method in class com.revmob.ads.popup.RevMobPopup
For internal usage.

V

valueOf(String) - Static method in enum com.revmob.RevMobTestingMode
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.revmob.RevMobTestingMode
Returns an array containing the constants of this enum type, in the order they are declared.

A C F G H I L O P R S U V

Copyright © 2013. All Rights Reserved.