我尝试在Goceng项目中实施Admob。自Admob改变以来,我无法真正遵循该项目的文档。
我的错误是
05-04 12:51:21.959: W/Ads(9017): There was a problem getting an ad response. ErrorCode: 1
许多其他人也买了这个项目,所以我认为代码编写得很好,我没有改变任何东西。
对于测试,我使用:
AdRequest adRequest = new AdRequest.Builder().addTestDevice("XXX").build();
ads.loadAd(adRequest);
Admob ID看起来像
<string name="admob_id">ca-app-pub-xxxxxxxxxxxxxxxx/xxxxxxxxxx</string>
我刚刚在Admob中创建了一个应用程序,并在广告块中创建了此ID。
谁能告诉我我的错误?
清单中的元数据等是存在的,正如我所提到的那样,这是一个适用于许多人的完成项目
代码:
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ctx = this;
setContentView(R.layout.activity_home);
// Declare object of Utils class;
utils = new Utils(this);
// connect view objects and xml ids
adView = (AdView)this.findViewById(R.id.adView);
// add the fragment to the 'fragment_container' FrameLayout
getSupportFragmentManager().beginTransaction()
.add(R.id.frame_content, fragObjList).commit();
// load ads
Ads.loadAds(adView);
}
activity_home.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/darker_gray">
<FrameLayout
android:id="@+id/frame_content"
android:layout_above="@+id/adView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="@string/admob_id"
ads:adSize="SMART_BANNER"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"/>
</RelativeLayout>