作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 admob 转换广告。如果我在打开应用程序之前连接到互联网,广告会正确加载,但是,如果我先启动应用程序而没有连接到互联网,并且在应用程序启动后,如果我连接到互联网,则没有回调到 onAdLoaded 失败加载广告。
我的布局概览:
<RelativeLayout
<layout_height>"match_parent"<layout_height>
<layout_width>"match_parent"<layout_width>
<RelativeLayout>
<layout_height>"match_parent"<layout_height>
<layout_width>"match_parent"<layout_width>
<layout_above>"adView"<layout_above>
<!--Main content--->
</RelativeLayout>
<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
android:visibility="gone"
ads:adSize="BANNER"
ads:adUnitId="@string/test_ad_id">
</com.google.android.gms.ads.AdView>
</RelativeLayout>
Java代码:
MobileAds.initialize(this, getString(R.string.test_ad_id));
final AdView adView = findViewById(R.id.adView);
final AdRequest adRequest = new AdRequest.Builder().build();
adView.loadAd(adRequest);
adView.setAdListener(new AdListener() {
@Override
public void onAdLoaded() {
super.onAdLoaded();
adView.setVisibility(View.VISIBLE);
}
@Override
public void onAdFailedToLoad(int i) {
super.onAdFailedToLoad(i);
adView.setVisibility(View.GONE);
}
});
这很奇怪,因为在应用程序运行后连接到互联网时没有回调到 onAdLoaded。adView 可见性是否导致问题?我相信可见性不是问题,因为最初 adView 的可见性已经消失。正如我之前所说,如果该应用程序在启动之前已连接到互联网,则一切正常。
最佳答案
我认为您必须创建 OnConnectionEstablist
事件/函数,只有在连接到互联网时才会加载广告。
关于android - Admob 安卓 : No callback to onAdLoaded after internet connection is established,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49810878/
我是一名优秀的程序员,十分优秀!