Я использую Admob Native ads. Из приведенного ниже кода я успешно завершил работу с AppInstallAd. Но теперь я хочу открыть игровой магазин или мне нужна ссылка на игровой магазин Ad , пока я нажимаю на объявление. Возможно ли это с помощью Admob Native ad? Ниже мой код:
String adId = "ca-app-pub-3940256099942544/2247696110";
// Test : "ca-app-pub-3940256099942544/2247696110"
final AdLoader adLoader = new AdLoader.Builder(AdActivity.this, adId)
.forAppInstallAd(new NativeAppInstallAd.OnAppInstallAdLoadedListener() {
@Override
public void onAppInstallAdLoaded(final NativeAppInstallAd appInstallAd) {
// Show the app install ad.
Log.d("Ads", appInstallAd + "");
if (appInstallAd.getImages().size() > 0){
adView.setImageDrawable(appInstallAd.getImages().get(0).getDrawable());
}
}
})
.forContentAd(new NativeContentAd.OnContentAdLoadedListener() {
@Override
public void onContentAdLoaded(NativeContentAd contentAd) {
// Show the content ad.
Log.d("Ads", contentAd + "");
}
})
.withAdListener(new AdListener() {
@Override
public void onAdFailedToLoad(int errorCode) {
// Handle the failure by logging, altering the UI, and so on.
Log.d("Ads", errorCode + "");
}
})
.withNativeAdOptions(new NativeAdOptions.Builder()
// Methods in the NativeAdOptions.Builder class can be
// used here to specify individual options settings.
.build())
.build();
adLoader.loadAd(new AdRequest.Builder().build());
}