预加载 – ListView中的Admob原生广告

我已经阅读了将Admob Native Ads放入Listview的方法:

Putting an AdMob native ad in a listView

如果我的假设是正确的,那么一旦用户滚动到该位置,广告就会被加载.是否可以预先加载原生广告,例如在与从服务器请求列表数据相同的位置?

Google也允许多次加载广告,例如我想在每10个位置展示广告?

任何意见,将不胜感激.

谢谢你&问候.

最佳答案 我从2周开始都遵循所有原生快递Adview问题,但从未找到正确的答案,我希望我能用自己的解决方案帮助你(或任何阅读它的人).

我在Fragment Adapter上使用它.

   contadorAnuncio=position; // position is the number of item assigned on listview  



    if (contadorAnuncio > 0 && contadorAnuncio % 9 == 0)
    {


        Log.i("Inicio en 10", "inicio anuncio"); 
        convertView.findViewById(R.id.adView).setVisibility(View.VISIBLE);
        NativeExpressAdView adView = (NativeExpressAdView) convertView.findViewById(R.id.adView);
        adView.loadAd(new AdRequest.Builder().build());
        adView.setTag(position);



    }else{
        convertView.findViewById(R.id.adView).setVisibility(View.GONE);

    }



    return convertView;

}

这在结束我的xml之前.

别忘了添加:

android:visibility =“gone”和xmlns:ads =“http://schemas.android.com/apk/res-auto”

并更改adSize.

 <com.google.android.gms.ads.NativeExpressAdView
    android:id="@+id/adView"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    ads:adUnitId="@string/native_express_ad_unit_id"
    ads:adSize="FULL_WIDTHx400" 
    android:visibility="gone">
</com.google.android.gms.ads.NativeExpressAdView>

检查广告与Native Express Adview的集成程度.

Native Express Adview on my App

点赞