AdMob横幅未在设备上显示
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AdMob横幅未在设备上显示相关的知识,希望对你有一定的参考价值。
我正在尝试将AdMob嵌入到应用程序中(以前在使用谷歌地图时工作),但现在当我在eclipse上以图形布局查看我的应用程序时,一切看起来都很好。我的AdMob横幅位于底部,其中包含Ads by Google,因此我知道它可以正常工作,但是当我将应用加载到真实设备(Galaxy S4)上时,它并未显示。我的logcat说广告没有显示没有刷新广告,但没有其他错误我期望看到,即没有广告空间等
这是我的布局文件:
<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:id="@+id/relativelayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
tools:context=".MainActivity" >
<EditText
android:id="@+id/txtText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="29dp"
android:alpha="1"
android:ems="10"
android:inputType="text" />
<Button
android:id="@+id/btnSpeak"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/txtText"
android:layout_centerHorizontal="true"
android:layout_marginTop="62dp"
android:text="@string/btnValue" />
<Button
android:id="@+id/btnClear"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/btnSpeak"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/btnClear" />
<RelativeLayout
android:id="@+id/bannerlayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="top" >
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
ads:adSize="SMART_BANNER"
ads:adUnitId="XXXXXXXX/XXXXXXX"
android:layout_alignParentBottom="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
我的类文件onCreate代码:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
adView = new AdView(this);
adView.setAdSize(AdSize.SMART_BANNER);
adView.setAdUnitId(AD_UNIT_ID);
RelativeLayout layout = (RelativeLayout) findViewById(R.id.bannerlayout);
layout.addView(adView);
AdRequest adRequest = new AdRequest.Builder()
.addTestDevice("XXXXXXXXXXXXXXXXXXXX")
.build();
adView.loadAd(adRequest);
我只是无法理解Eclipse图形布局查看器如何显示一切正常,但它没有显示在我的手机上,Logcat只是告诉我广告没有显示没有其他信息?
有任何想法吗?
编辑:我的横幅现在正在显示,但它显示在顶部,即使它应该在底部?
答案
回答你的编辑。由于您将相关布局中的广告视图添加到相对布局中,并且重力设置为顶部,因此它就是这样做的。尝试设置:
<RelativeLayout
android:id="@+id/bannerlayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="bottom" >
另一答案
在“RelativeLayout layout =(RelativeLayout)findViewById(R.id.bannerlayout);”中横幅布局是我们编码的活动的布局还是新的xml?
以上是关于AdMob横幅未在设备上显示的主要内容,如果未能解决你的问题,请参考以下文章
iAd 和 AdMob 广告未在已发布的 iPhone 应用程序中显示
admob 广告未在 Android 应用程序 apk 中显示