直升机
我用这个
<com.google.ads.AdView
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:adUnitId="a1517edc9c6ed63" />
在java中
AdView adView = (AdView)this.findViewById(R.id.adView);
adView.loadAd(new AdRequest());
并在 AndroidManifest
<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
</application>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>
我带来了外部 JAR (GoogleAdMobAdsSdk-6.4.1)
但他没有和我一起工作。