gpt4 book ai didi

java - GooglePlay 服务 AdMob

转载 作者:太空宇宙 更新时间:2023-11-04 15:13:58 25 4
gpt4 key购买 nike

我正在尝试在我的应用程序中包含广告,我已经创建了 AdMob 帐户,并按照教程进行操作(下载了 API,将 google-play-services/libraries/google-play-services_lib 导入工作区,在 Java 构建路径/库中)已导入 google-play-services_lib/libs/google-play-services,并检查 Java 构建路径/顺序和导出中的字段

在我的项目中我做了

布局activity_menu

<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="fill_parent" >
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
ads:adUnitId="ca-app-pub-xxxxxxxxxxxxx/xxxxxxxx"
ads:adSize="BANNER"
/>

java文件

 protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_menu);
AdView adView = (AdView)this.findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().build();
adView.loadAd(adRequest);
}

当我运行我的应用程序时,我可以看到广告正在显示,但我收到了一些警告

01-10 12:29:04.269: W/dalvikvm(2450): VFY: unable to resolve instance field 35
01-10 12:29:04.289: W/GooglePlayServicesUtil(2450): Google Play services is missing.
01-10 12:29:15.319: W/GooglePlayServicesUtil(2450): Google Play services is missing.

和错误

01-10 12:29:15.359: E/GooglePlayServicesUtil(2450): GooglePlayServices not available due to error 1

因此,尽管出现错误,我还是多次看到我的广告,但当我检查 AdMob 帐户时,它显示我的浏览次数为 0。是因为我还没有发布我的应用程序,还是我必须做更多的事情?这个错误是关于什么的?

编辑:AdMob 网站已刷新,现在我看到了 45 个浏览量,但没有花钱,这些广告是 PPC 还是处于测试模式?我可以将它们更改为 PPV 吗?

最佳答案

我不知道您的情况的确切问题是什么,但我执行了以下操作并且工作正常。

AdView adView = new AdView(this, AdSize.SMART_BANNER, "a152c65f562hc48b");
AdRequest request = new AdRequest();
adView.loadAd(request);
// Add the adView to it
layout.addView(adView); //layout is a RelativeLayout.
// // Initiate a generic request to load it with an ad
adView.loadAd(new AdRequest());

关于java - GooglePlay 服务 AdMob,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21043326/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com