How to know if UnifiedNativeAd is NativeAppInstallAd or NativeContentAd?

786 Views Asked by At

I am using UnifiedNativeAd to display native ad. How can I know if it's NativeAppInstallAd or NativeContentAd?

As per AdMob native ads policy compliance checklist, NativeAppInstallAd should always display Call To Action button while NativeContentAd doesn't need to show it (and indeed I don't show it due to my design of the native ad).

1

There are 1 best solutions below

0
On

Use UnifiedNativeAdView adView as layout root of native ad, you can judge from some getter of UnifiedNativeAd nativeAd and inject the value:

    if (nativeAd.getStore() == null) adView.getStoreView().setVisibility(View.INVISIBLE);              
    else {
        adView.getStoreView().setVisibility(View.VISIBLE);
        ((TextView) adView.getStoreView()).setText(nativeAd.getStore());
    }

    if (nativeAd.getStarRating() == null) adView.getStarRatingView().setVisibility(View.INVISIBLE);
    else {
        ((RatingBar) adView.getStarRatingView()).setRating(nativeAd.getStarRating().floatValue());
        adView.getStarRatingView().setVisibility(View.VISIBLE);
    }

    VideoController vc = nativeAd.getVideoController();
    if (vc.hasVideoContent()) { Log.d("TAG", "has video"); }

The code above is a part of google admob example project: googleads / googleads-mobile-android-examples, you could clone it and reset to earlier commit, it would really help.