我想使用谷歌广告,一切看起来都正确,但广告没有显示出来。 我试过这段代码,但似乎没有用 我下载了谷歌播放服务sdk,我下载了谷歌存储库 我在build.gradle中使用了compile 这是我在清单中的代码
app.component("name",{
bindings:{}
controller: function(myService){
this.data= myService.data;
}
})
在布局XML文件中:
<meta-data android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<activity android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent" />
</manifest>
并在mainActivity中
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context="com.joba4joo.adstist.MainActivity">
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:adUnitId="@string/banner_ad_unit_id"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="85dp">
</com.google.android.gms.ads.AdView>
</RelativeLayout>
你可以帮我吗....谢谢
答案 0 :(得分:1)
首先确保你有
<string name="banner_ad_unit_id">ca-app-pub-3940256099942544/6300978111</string>
在strings.xml资源文件中。这允许您在布局文件中使用"@string/banner_ad_unit_id"
其次,您似乎错过了MainActivity中的一行。试试这个
MobileAds.initialize(getApplicationContext(), "ca-app-pub-3940256099942544~3347511713");
AdView mAdView = (AdView) findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().build();
mAdView.loadAd(adRequest);