我遇到了Admob没有显示广告的问题......
这是LogCat:
WARN/AdMobSDK(502): Ignoring requestFreshAd() because we are requesting an ad right now already.
INFO/AdMobSDK(502): No fill. Server replied that no ads are available (1164ms)
INFO/AdMobSDK(502): No fill. Server replied that no ads are available (846ms)
我已经尝试过测试模式,没有测试模式,模拟器,真实手机等。它从未显示任何内容,但我收到Admob统计数据上的请求和打印,就像它曾经有效一样。 ..
AFAIK,我在Admob Android SDK中做了所有事情...唯一可能导致任何问题的事情,恕我直言,我将使用带有scrollview的标签式布局,然后是广告的相对布局示...
以下是标签布局的示例:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:myapp="http://schemas.android.com/apk/res/com.xxx.xxx"
android:id="@+id/tababout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FF000000">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FF000000"
android:padding="10px">
<ImageView
android:id="@+id/label_img"
android:src="@drawable/about_header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="centerInside" />
<TextView android:id="@+id/label_know_more_desc"
style="@style/Desc"
android:layout_below="@id/label_img"
android:text="@string/tab_about_know_more_desc" />
<Button android:id="@+id/bt_know_more"
style="@style/Button"
android:gravity="center_vertical|center_horizontal"
android:layout_below="@id/label_know_more_desc"
android:text="@string/tab_about_know_more_bt" />
<com.admob.android.ads.AdView android:id="@+id/ad" android:layout_width="fill_parent" android:layout_height="wrap_content" myapp:backgroundColor="#000000" myapp:primaryTextColor="#FFFFFF" myapp:secondaryTextColor="#CCCCCC" />
</RelativeLayout>
</ScrollView>
这是main.xml,而不是我认为你需要它:
<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FF000000">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FF000000"
android:paddingTop="5px">
</FrameLayout>
</LinearLayout>
</TabHost>
我在Admob ads will not display when placed inside a tabview中读到问题可能是我投入的10px填充,但即使我禁用它,它也不起作用。
我甚至尝试将xmlns:myapp移动到RelativeLayout,但显然没有改变任何东西....
另外,我在24小时前发布了第一个直播广告请求...
修改
好的,现在我到了某个地方,我已经设法让测试广告出现(我的setTestDevices在onCreate代码中已经太晚了,我把它推到了第一行),但不是真正的...我错过了什么吗?我显然注释掉了setTestDevices行,没有广告出现
编辑2
好吧,我添加了两个内部广告(我已经启用了内部广告,但没有设置内部广告),突然广告开始在我的应用上展示(不仅仅是内部广告)。
我猜一切都完全有效吗?! :)
谢谢大家!
答案 0 :(得分:5)
您没有将广告定位在RelativeLayout中(他们需要layout_above或layout_below或其他任何内容来指定放置它们的位置)。
另外,你可能希望确保匹配的最小尺寸,我认为它至少是高度48dip,不确定横向是什么。
最后我不知道你要在哪里放置你的广告,但它可能在你的主框架布局中更有意义,我在我的应用程序底部有一个填充,我用于广告视图
修改:如果您的应用是公开检查广告收入。 Android 2.3版允许广告隐藏在视图后面并仍然记录点击次数。实际上,在我的广告被任何人看到之前,我的初始价格为1美元。
答案 1 :(得分:0)
AdMob广告无法显示的另一个原因是您尚未声明AdActivity,该广告会在点击广告时显示广告。如果没有在我的AndroidManifest.xml中声明的AdActivity,我看不到广告。随着它宣布,广告出现。
...的AndroidManifest.xml ...
<!-- AdMob --> <activity android:name="com.google.ads.AdActivity" android:configChanges="keyboard|keyboardHidden|orientation"/>