Banner ads occupy a spot within an app's layout, either at the top or bottom of the device screen.
Note: Pangle only supports 300x250(dp) and 320x50(dp) for traffic outside of Chinese Mainland at this time. And Pangle will not support refresh interval by client SDK after v46.
Create an app and banner ad placement on Pangle platform
Loading an ad is accomplished using the load()
method on the PAGBannerAd
class. The load()
method requires an ad slot id, instance objects of PAGBannerSize
and PAGBannerRequest
, and a PAGBannerAdLoadListener
to be notified when ad loading succeeds or fails. The loaded PAGBannerAd
object is provided as a parameter in the success callback.
PAGBannerRequest is a Ad Loading Manager. It is recommended to be the member variable of the Activity.
Use the method of PAGBannerAd to load the ad, and register the PAGBannerAdLoadListener callback.
PAGBannerAdLoadListener | description |
onError | This method is invoked when an ad fails to load. It includes an error parameter of type Error that indicates what type of failure occurred. For more information, refer to the ErrorCode section |
onAdLoaded | This method is executed when an ad material is loaded successfully. |
Ad event callbacks need to be registered before displaying an ad. Each method in the event callback corresponds to an event in the ad lifecycle.
PAGBannerAdInteractionListener | description |
onAdShowed | This method is invoked when the ad is displayed, covering the device's screen. |
onAdClicked | This method is invoked when the ad is clicked by the user. |
onAdDismissed | This method is invoked when the ad disappears. |
After the advertisement is loaded successfully, an instance of the PAGBannerAd
object is returned. Call the getBannerView
of the PAGBannerAd
object to obtain the View of the Banner advertisement. After adding BannerView to the ViewContainer (such as FrameLayout), the advertisement can be displayed automatically.
When destroying the ad, call destroy()
of PAGBannerAd. This method needs to be called on the main thread.
Now you have finished the integration. If you wanna test your apps, make sure you use test ads rather than live, production ads. The easiest way to load test ads is to use test mode. It's been specially configured to return test ads for every request, and you're free to use it in your own apps while coding, testing, and debugging.
Refer to the How to add a test device? to add your device to the test devices on Pangle platform.