我已经尝试了几天没有任何结果让我的adobs运行.. 我一直在关注http://code.google.com/mobile/ads/docs/android/banner_xml.html上的教程,但似乎无法使其正常工作..
我的java文件:
// Look up the AdView as a resource and load a request.
AdView adView = (AdView)this.findViewById(R.id.adView);
adView.loadAd(new AdRequest());
清单:
</activity>
<activity android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation"/>
</application>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
main.xml中:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res/com.kai.custombutton"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="xxxxxxxxxxx"
ads:adSize="BANNER"/>
attrs.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="com.google.ads.AdView">
<attr name="adSize">
<enum name="BANNER" value="1"/>
<enum name="IAB_MRECT" value="2"/>
<enum name="IAB_BANNER" value="3"/>
<enum name="IAB_LEADERBOARD" value="4"/>
</attr>
<attr name="adUnitId" format="string"/>
</declare-styleable>
</resources>
我添加了admob sdk 4.0.4也.. 如果有人有工作代码我会很高兴,如果我可以使用它或任何人可以帮助我!
答案 0 :(得分:0)
我的工作原理:
ad = new AdView(this, AdSize.BANNER, "xxxadmobIDxxx");
LinearLayout layout =
(LinearLayout) findViewById(R.id.main_admob_layout);
layout.addView(ad);
AdRequest request = new AdRequest();
request.setTesting(false);
ad.loadAd(request);
ad
是一个全球性的私有AdView
。
答案 1 :(得分:0)
检查您的AdMob帐户。您的帐户是否收到了展示请求?如果它正在接收请求,那么您的代码就可以了。从我的结果看起来不错,但我可能会遗漏一些东西。当我与adMob斗争时,This是我的旧帖子之一。它有我的xml和java代码,目前正在我的应用程序上运行。
如果这是您上面代码中的真实adUnit ID号,我会尽快摆脱它。世界其他地方没有必要知道这个数字!
答案 2 :(得分:0)
对于那些需要有关最新admob sdk(4.0.4)的优秀教程的人,请查看此站点:http://www.taiic.com/2011/04/27/admob-4-0-4-tutorial/?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+taiic+%28App+Inventor+Info+Center%29
帮了我很多忙!