7

我遇到了 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 stats 上的请求和打印,就像它曾经工作过一样......

AFAIK,我在 Admob Android SDK 中做了所有事情......唯一可能导致任何问题的原因,恕我直言,我正在使用带有滚动视图的选项卡式布局,然后是广告显示的相对布局。 .

这是选项卡布局的示例:

<?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 中读到,当放置在选项卡视图中时,问题可能是我投入的 10px 填充时不会显示,但即​​使我禁用它,它也不起作用。

我什至尝试将 xmlns:myapp 移动到 RelativeLayout,但显然没有改变任何东西......

另外,我在 24 小时前提出了我的第一个实时广告请求...

编辑

好的,现在我到了某个地方,我已经设法让测试广告出现(我的 setTestDevices 在 onCreate 代码中为时已晚,我把它推到了第一行),但不是真实的......我错过了吗某物?我显然注释掉了 setTestDevices 行并且没有广告出现

编辑 2

好吧,我添加了两个内部广告(我已经启用了内部广告,但没有设置内部广告),突然广告开始在我的应用上显示(不仅仅是内部广告)。

我想一切都让它起作用了?!:)

感谢大家!

4

2 回答 2

5

您没有将广告定位在 RelativeLayout 中(它们需要 layout_above 或 layout_below 或其他任何东西来指定放置它们的位置)。

此外,您可能希望确保匹配的 admob 的最小尺寸,我认为它的高度至少是 48dip,不确定水平是多少。

最后,我不知道您要在哪里放置广告,但在您的主框架布局中可能更有意义,我的应用程序底部有一个填充,用于广告视图。

编辑:如果您的应用程序是公开的,请检查广告收入。Android pre 2.3 允许广告隐藏在视图后面并仍然记录点击。实际上,在我的广告被任何人看到之前,我就赚到了最初的 1 美元。

于 2010-12-29T10:29:41.290 回答
0

AdMob 广告不显示的另一个原因是您没有声明 AdActivity,它会在点击广告时显示广告。如果没有在我的 AndroidManifest.xml 中声明的 AdActivity,我看不到广告。声明后,广告就出现了。

...AndroidManifest.xml...

<!--  AdMob -->
<activity android:name="com.google.ads.AdActivity"
          android:configChanges="keyboard|keyboardHidden|orientation"/>
于 2011-09-23T05:15:57.873 回答