-
Notifications
You must be signed in to change notification settings - Fork 338
1.3 Methods for Banner
floatinghotpot edited this page Sep 15, 2014
·
1 revision
Purpose: create a banner Ad.
Param
- adId, string, the Ad unit Id for banner.
- options, json object, see the keys in AdMob.setOptions
- success, function, callback when success, can be null or missing.
- fail, function, callback when fail, can be null or missing.
Extra key/value for param options
- adId, string, Ad unit Id for this banner.
- success, function, callback when success.
- error, function, call back when fail.
Example Code:
AdMob.createBanner( admobid.banner );
AdMob.createBanner({
adId: admobid.banner,
position: AdMob.AD_POSITION.BOTTOM_CENTER,
autoShow: true,
success: function(){
},
error: function(){
alert('failed to create banner');
}
});
Purpose: show banner at given position. It can also be used to move banner to given position. It's not needed to removeBannr and create a new one.
Params:
- position, integer, see description in AdMob.setOptions()
Purpose: show banner at given position with (x,y).
Params:
- x, integer, in pixels. Offset from screen left.
- y, integer, in pixels. Offset from screen top.
Purpose: hide the banner, remove it from screen, but can show it later.
Purpose: destroy the banner, remove it from screen.
You can create another banner if different size, need remove the old one.