我在Android应用中遇到了Admob的问题。 每次在logcat上获取对话广告都不可见,不刷新广告。错误代码2和调度广告从现在开始刷新60000毫秒。
小米Redmi笔记2的测试
主Activity.xml中的我有那个代码
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
ads:adSize="BANNER"
ads:adUnitId="@string/banner_ad_unit_id">
</com.google.android.gms.ads.AdView>
我添加到AndroidManifest.xml
和
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
和
<activity android:name="com.google.android.gms.ads.AdActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent" />
Java代码
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import com.google.android.gms.ads.AdRequest;
import com.google.android.gms.ads.AdView;
public class MainMenuActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main_menu);
AdView mAdView = (AdView) findViewById(R.id.adView);
AdRequest request = new AdRequest.Builder()
.addTestDevice(AdRequest.DEVICE_ID_EMULATOR) // All emulators
.addTestDevice("F362E9BD751EF0E1933B8FEEDDD2A0BD") // An example device ID
.build();
mAdView.loadAd(request);
}
}
在构建gradle中我还编译了'com.google.android.gms:play-services-ads:8.4.0'
那有什么不对?
答案 0 :(得分:1)
您是否在
中添加了以下代码?@Override
protected void onPause() {
mAdView.pause();
super.onPause();
}
@Override
protected void onResume() {
super.onResume();
mAdView.resume();
}
停用广告拦截器。确保您没有安装adBlock等应用。
无论如何,该错误意味着“等待广告响应超时”,因此请检查您的互联网连接并尝试从Wi-Fi更改为移动网络
<强>更新强>
主Activity.xml中的我有那个代码
您确定在AdView
布局中添加了activity_main_menu.xml
而不是activity.xml
,因为在您的代码中,您的活动的布局是activity_main_menu。 BTW布局名称表明它是活动菜单的布局而非活动本身。
的setContentView(R.layout.activity_main_menu);