Infeed banner placements are designed to serve ads in scrollable feeds (nevertheless, they can also be used in all other scenarios). This includes giving the app complete control over the lifecycle of a specific banner impression. The app can load an ad with a specific configuration and gets notified about the outcome of that specific load request (successful, failure). Hence, the usage of an infeed banner differs from using sticky banners.
BannerConfiguration configuration = new BannerConfiguration();
InfeedBannerPlacement placement = AATKit.createInfeedBannerPlacement("<PLACEMENT_NAME>", configuration);
val configuration = BannerConfiguration()
val placement = AATKit.createInfeedBannerPlacement("<PLACEMENT_NAME>", configuration)
BannerConfiguration
BannerConfiguration can be configured with the number of workers and whether manual ad space counting is enabled.
Manual ad space counting (Please refer to our article about Ad Spaces.)
false (default): infeed banner placement counts an Ad Space every time the app requests an ad from it. Shall only be used, if the app is presenting banners immediately (= not caching them for later use).
true: the app needs to notify the infeed banner placement about every Ad Space it creates (= placement doesn’t count Ad Spaces itself). This is especially useful if the app implements its own banner caching (e.g. in order to create a smooth user experience for the feed). In this case, the app should notify the placement about an Ad Space only if the feed cell intended for presenting a banner is reaching the visible area of the screen (regardless of whether an ad was available for it or not). If this sounds interesting to you, we strongly advise visiting our chapter about AATKit’s Banner Cache.
To manually count an ad space, call the following InfeedBannerPlacement API:
// call it when Infeed Ad is about to be displayed
placement.countAdSpace();
// call it when Infeed Ad is about to be displayed
placement.countAdSpace()
Number of workers
Default: 3
Defines, how many ads can be loaded in parallel. Higher numbers will result in faster ad delivery but also in more CPU and network traffic consumption
The infeed banner placement uses the request completion listener (BannerRequestCompletionListener) to notify about successful ad load or failure. To request a banner, use the BannerRequest default initializer that takes an instance implementing BannerRequestDelegate as a parameter.
BannerRequest request = new BannerRequest(this);
Map<String, List<String>> targeting = new HashMap<>();
targeting.put("key", Arrays.asList("value1", "value2"));
request.setTargetingInformation(targeting);
Set<BannerSize> allowedBannerSizes = new HashSet<>();
allowedBannerSizes.add(BannerSize.Banner320x53);
allowedBannerSizes.add(BannerSize.Banner300x250);
request.setBannerSizes(allowedBannerSizes);
request.setContentTargetingUrl("http://example.com/similar/content");
OR
request.setMultiContentTargetingUrls(Arrays.asList("URL1", "URL2"));
val request = BannerRequest(this)
val targeting = mapOf("key" to listOf("value1", "value2"))
request.targetingInformation = targeting
val allowedBannerSizes = setOf(BannerSize.Banner320x53, BannerSize.Banner300x250)
request.setBannerSizes(allowedBannerSizes)
request.contentTargetingUrl = "http://example.com/similar/content"
OR
request.multiContentTargetingUrls = listOf("URL1", "URL2")
Perform Request
You can request multiple AATBannerRequest in parallel (i.e. the next one, before the previous one was completed).
BannerRequest request = new BannerRequest(this);
placement.requestAd(request, new BannerRequestCompletionListener() {
@Override
public void onRequestCompleted(@Nullable BannerPlacementLayout layout, @Nullable BannerRequestError error) {
if (error != null) {
//ad failed to load
return;
}
// display the returned BannerPlacementLayout
}
});
val request = BannerRequest(this)
placement.requestAd(request, object : BannerRequestCompletionListener {
override fun onRequestCompleted(layout: BannerPlacementLayout?, error: BannerRequestError?) {
if (error != null) {
//ad failed to load
return
}
// display the returned BannerPlacementLayout
}
})
Cancel Request
There might be pending ad requests when the user navigates to a different activity. You should cancel any pending requests when that happens.
placement.cancel(request);
placement.cancel(request)
Destroy old banner
When you no longer need a banner, you have to destroy it manually by removing it from your view and calling the "destroy" method:
[remove loadedMultiSizeBanner from your layout]
oldBanner.destroy();
[remove loadedMultiSizeBanner from your layout]
oldBanner.destroy()
Ad Info
After loading a banner view, you can access the loaded ad information by accessing the adInfo property of the loaded banner view:
AdInfo adInfo = loadedBannerView.getAdInfo();
val info = loadedBannerView.adInfo
Complete Code Example
private InfeedBannerPlacement placement;
private void setUpInfeedBannerPlacement() {
BannerConfiguration configuration = new BannerConfiguration();
placement = AATKit.createInfeedBannerPlacement("<PLACEMENT_NAME>", configuration);
// Set placement listener to listen to the callbacks
placement.setListener(this);
}
private void requestInfeedBanner() {
// Create the banner request instance
BannerRequest request = new BannerRequest(this);
// Configure request banner sizes
Set<BannerSize> allowedBannerSizes = new HashSet<>();
allowedBannerSizes.add(BannerSize.Banner320x53);
allowedBannerSizes.add(BannerSize.Banner300x250);
request.setBannerSizes(allowedBannerSizes);
// Configure request targeting information
Map<String, List<String>> targeting = new HashMap<>();
targeting.put("key", Arrays.asList("value1", "value2"));
request.setTargetingInformation(targeting);
// Configure request targeting URL
request.setContentTargetingUrl("http://example.com/similar/content");
// Perform the ad request
placement.requestAd(request, new BannerRequestCompletionListener() {
@Override
public void onRequestCompleted(@Nullable BannerPlacementLayout layout, @Nullable BannerRequestError error) {
if (error != null) {
//ad failed to load
return;
}
// display the returned BannerPlacementLayout
}
});
}
@Override
protected void onResume() {
super.onResume();
// [IMPORTANT] Notify AATKit about activity lifecycle
AATKit.onActivityResume(this);
}
@Override
protected void onPause() {
// [IMPORTANT] Notify AATKit about activity lifecycle
AATKit.onActivityPause(this);
super.onPause();
}
// InfeedBannerPlacementListener:
@Override
public void onPauseForAd(@NonNull Placement placement) {
// App is paused after banner got clicked
}
@Override
public void onResumeAfterAd(@NonNull Placement placement) {
// Back to the app after clicking on the ad
}
// BannerRequestDelegate:
@Override
public boolean shouldUseTargeting(@NonNull BannerRequest request, @Nullable AdNetwork network) {
return true;
}
private var placement: InfeedBannerPlacement? = null
private fun setUpInfeedBannerPlacement() {
val configuration = BannerConfiguration()
placement = createInfeedBannerPlacement("<PLACEMENT_NAME>", configuration)
// Set placement listener to listen to the callbacks
placement?.listener = this
}
private fun requestInfeedBanner() {
// Create the banner request instance
val request = BannerRequest(this)
// Configure request banner sizes
val allowedBannerSizes = setOf(BannerSize.Banner320x53, BannerSize.Banner300x250)
request.setBannerSizes(allowedBannerSizes)
// Configure request targeting information
val targeting = mapOf("key" to listOf("value1", "value2"))
request.targetingInformation = targeting
// Configure request targeting URL
request.contentTargetingUrl = "http://example.com/similar/content"
// Perform the ad request
placement?.requestAd(request, object : BannerRequestCompletionListener {
override fun onRequestCompleted(layout: BannerPlacementLayout?, error: BannerRequestError?) {
if (error != null) {
//ad failed to load
return
}
// display the returned BannerPlacementLayout
}
})
}
protected override fun onResume() {
super.onResume()
// [IMPORTANT] Notify AATKit about activity lifecycle
AATKit.onActivityResume(this)
}
protected override fun onPause() {
// [IMPORTANT] Notify AATKit about activity lifecycle
AATKit.onActivityPause(this)
super.onPause()
}
// InfeedBannerPlacementListener:
override fun onPauseForAd(placement: Placement) {
// App is paused after banner got clicked
}
override fun onResumeAfterAd(placement: Placement) {
// Back to the app after clicking on the ad
}
// BannerRequestDelegate:
override fun shouldUseTargeting(request: BannerRequest, network: AdNetwork?): Boolean {
return true
}