如果我尝试整合Google AdMobs,我的应用会崩溃

时间:2017-02-25 01:54:01

标签: android xml admob main-activity

我尝试将Google AdMobs整合到我的应用程序中。

我在我的XML中写道:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:ads="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <com.google.android.gms.ads.AdView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_alignParentTop="true"
        ads:adSize="BANNER"
        ads:adUnitId="@string/banner_ad_unit_id"
        android:id="@+id/adView"></com.google.android.gms.ads.AdView>

这是我的MainActivity

@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        AdView adView = (AdView)findViewById(R.id.adView);
        AdRequest adRequest = new AdRequest.Builder().build();
        adView.loadAd(adRequest);

我已经整合了

    我的build.gradle中的
  1. compile 'com.google.android.gms:play-services-ads:10.2.0'
  2. 我的string.xml中的
  3. <string name="banner_ad_unit_id">*censored*</string>
  4. <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>在我的清单中。
  5. 我认为问题出在我的MainActivity或我的XML中。

    为什么我的应用程序崩溃?

    〜亚伦

1 个答案:

答案 0 :(得分:1)

我认为您尚未初始化移动广告。 在加载广告之前在onCreate中添加此内容...

 MobileAds.initialize(this, "YOUR_ADMOB_APP_ID");