Skip to main content

Overview

Native ads are an ad format that allows you to freely customize the ad UI to match your app’s design. You can provide a natural user experience by individually placing elements such as ad creatives (images, videos), headline, body, and CTA buttons.

Key Features

  • Complete UI Customization: Freely configure ad layout to match your app’s design system
  • Various Media Support: Image and video ad creative support
  • Flexible Click Area Settings: Full click or individual element click handling
  • Profile Information Display: Advertiser profile logo, name, and link support

Classes and Interfaces

AdropNativeAd

Main class for loading and managing native ads.
String
required
Ad unit ID (issued from console)
String
ID for contextual targeting (optional)
AdropNativeAdListener
Listener to handle ad events
Boolean
default:"false"
Whether to use custom click handling

Key Properties

AdropNativeAdView

Container view for displaying native ads.
Boolean
default:"false"
Whether to enable entire area click. When set to true, click events occur on the entire ad view area.

Key Methods

AdropMediaView

Media container view for displaying ad images or videos.
For video creatives, AdropMediaView must be bound through AdropNativeAdView.setMediaView(...). Reading ad.asset and playing the URL with your own player (ExoPlayer, MediaPlayer, or any third-party library) bypasses the SDK’s video tracking pipeline, so VTR is not measured and onAdVideoStart / onAdVideoEnd never fire. See Video Tracking and VTR.

AdropNativeAdListener

Interface for handling ad events.

AdropNativeAdProfile

Data class containing advertiser profile information.

Implementation Guide

1. XML Layout Setup

Define the layout to display native ads. Use AdropNativeAdView as the root and place ad elements inside.
res/layout/native_ad_layout.xml

2. Load and Display Ad (Kotlin)

3. Load and Display Ad (Java)

Java

Advanced Features

Entire Click Area Setting

You can set the entire ad view area to trigger click events.
When isEntireClick is set to true, the entire ad view becomes a clickable area. Individual element click listeners will not work.

Individual Element Click Listeners

You can set custom click listeners on specific ad elements.

Contextual Targeting

You can request ads matching a specific context.

Using in RecyclerView

You can display native ads as items in a RecyclerView.
RecyclerView Adapter

Test Unit IDs

Use the following test unit IDs during development and testing.
Be sure to replace with actual unit IDs before production deployment.

Lifecycle Management

Resource Release in Activity/Fragment

Native ads must be released when no longer in use to prevent memory leaks.

Resource Release in RecyclerView

When using ads in a RecyclerView Adapter, all ads must be released when the Activity or Fragment is destroyed.

Video Tracking and VTR

Adrop measures video metrics for native creatives — including impression-to-completion (VTR), onAdVideoStart, and onAdVideoEnd — only when the video is rendered through the SDK’s media surface (AdropMediaView bound via AdropNativeAdView.setMediaView(...)). The AdropNativeAd.asset property returns a URL pointing to the underlying image or video file. It is exposed as supplementary metadata (for example, for thumbnails or your own analytics); it is not intended to drive playback.
Do not feed the asset URL into a custom video player (ExoPlayer, MediaPlayer, or any third-party player) for a video native ad. When the SDK’s media surface is bypassed:
  • VTR (Video Through Rate) is not collected for that placement.
  • onAdVideoStart / onAdVideoEnd callbacks never fire.
  • Aggregate video performance for the unit will under-report or report zero.
Click (onAdClicked) and impression (onAdImpression) tracking still work because they are wired to the container view, but the video-specific signals are lost.
Bind the SDK media surface for every video native:
If a placement absolutely requires a custom player and you accept that VTR will not be measured, you can still surface click and impression attribution by keeping the ad bound to AdropNativeAdView. In that case, treat the placement as non-VTR inventory in your internal reporting and avoid mixing it with SDK-measured video performance.

Best Practices

1. Display Only Required Elements

You don’t need to display all ad elements. Selectively use only the elements needed to match your app’s design.

2. Use Image Loading Libraries

Use image loading libraries like Glide or Coil when displaying icon, cover, and profile images.

3. Reuse Ad Views

When displaying ads in a RecyclerView, cache and reuse ad instances.

4. Appropriate Ad Placement

Place ads naturally without degrading user experience.
  • Content feed: 1 ad every 5-10 items
  • Detail screen: Place at bottom of content
  • Scroll view: Place to match natural content flow

5. Error Handling

Implement appropriate fallback handling for ad load failures.

Complete Example


Batch Loading (loads)

Use AdropNativeAd.loads() to request multiple native ads in a single batched call. This is useful for prefetching a pool of ads to insert into feeds, carousels, or paginated lists.

Signature

Usage

Listener Callbacks

The singular onAdReceived / onAdFailedToReceive callbacks are not invoked on the loads() path. Use onAdsReceived / onAdsFailedToReceive as the sole batch signals.

Constraints

  • Maximum 5 ads per call. If the server returns more, only the first 5 are delivered.
  • Backfill is not applied. If no direct ads fill, onAdsFailedToReceive is called with ERROR_CODE_AD_NO_FILL regardless of backfill configuration.
  • Do not call destroy() inside onAdsReceived. Bind each ad to an AdropNativeAdView via setNativeAd(...) or store for later lifecycle, then destroy() on the parent Activity.onDestroy() (or equivalent).
  • Unlike AdropBanner.loads(), the native batch waits for every returned ad to finish rendering before firing onAdsReceived, so each instance is fully rendered on delivery.

Backfill Ads

When backfill ads are enabled, backfill ads are automatically loaded when direct ads are unavailable. Use the isBackfilled property to check if the ad is a backfill ad.

AdChoices Position

For backfill native ads, you can choose which corner displays the AdChoices badge. Set preferredAdChoicesPosition on the AdropNativeAd instance before calling load().
This setting is a preferred hint for the backfill network and applies only to backfill native ads — direct ads are not affected. The value must be set before load() is called. The backfill network may override the position depending on its policy.
To use backfill ads, add the io.adrop:adrop-ads-backfill dependency. See Getting Started.

Next Steps

Banner Ads

Implement banner ads

Interstitial Ads

Implement interstitial ads

Targeting Settings

User properties and context targeting

Reference

Classes, listeners, error codes