gpt4 book ai didi

listview - 预加载 - ListView 中的 Admob 原生广告

转载 作者:行者123 更新时间:2023-12-02 21:49:53 25 4
gpt4 key购买 nike

我已经从这里阅读了将 Admob 原生广告放入 ListView 的方法: Putting an AdMob native ad in a listView

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

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

如有任何建议,我们将不胜感激。

谢谢您并致以问候。

最佳答案

自 2 周以来,我一直关注所有 Native Express Adview 问题,但从未找到正确的答案,我希望我能用我自己的解决方案帮助您(或任何阅读它的人)。

我在我的片段适配器上使用它。

   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"

并更改广告尺寸

 <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

关于listview - 预加载 - ListView 中的 Admob 原生广告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38587818/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com