基本廣告設定

你需要將以下內容新增到依賴項中:

compile 'com.google.firebase:firebase-ads:10.2.1'

然後把它放在同一個檔案中。

apply plugin: 'com.google.gms.google-services'

接下來,你需要將相關資訊新增到 strings.xml 中。

<string name="banner_ad_unit_id">ca-app-pub-####/####</string>

接下來,將 adview 放在任何你想要的位置,並像任何其他檢視一樣設定樣式。

    <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>

最後但並非最不重要的是,把它扔進你的 onCreate。

MobileAds.initialize(getApplicationContext(), "ca-app-pub-YOUR_ID");
AdView mAdView = (AdView) findViewById(R.id.adView);
    AdRequest adRequest = new AdRequest.Builder().build();
    mAdView.loadAd(adRequest);

如果你完全複製貼上,你現在應該有一個小橫幅廣告。只需在你需要的地方放置更多 AdView,即可獲得更多資訊。