我遇到了 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
好吧,我添加了两个内部广告(我已经启用了内部广告,但没有设置内部广告),突然广告开始在我的应用上显示(不仅仅是内部广告)。
我想一切都让它起作用了?!:)
感谢大家!