我理解没有足够空间展示广告但我不知道如何修复它的问题。我猜测有些东西占用了太多空间,但我不确定它到底是什么。我特指的是adob广告而不是亚马逊广告。
这是logcat:
08-13 19:09:42.972: ERROR/Ads(891): Not enough space to show ad! Wants: <480, 75>, Has: <432, 610>
08-13 19:09:42.972: ERROR/Ads(891): Not enough space to show ad! Wants: <480, 75>, Has: <432, 97>
这是我的xml文件:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
xmlns:Amazon="http://schemas.android.com/apk/lib/com.amazon.device.ads"
android:layout_height="match_parent"
android:background="@drawable/background5"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
android:id="@+id/MainLayout"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
tools:context=".MainActivity">
//start button
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Start"
android:background="#19d2b2"
android:id="@+id/start_button"
android:layout_above="@+id/instructions_button5"
android:layout_centerHorizontal="true"/>
//Instructions button
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Instructions"
android:background="#19d2b2"
android:id="@+id/instructions_button6"
android:layout_below="@+id/start_button"
android:layout_alignLeft="@+id/start_button"
android:layout_marginTop="10dp"/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Gallery"
android:background="#19d2b2"
android:id="@+id/save_button"
android:layout_below="@+id/instructions_button6"
android:layout_alignParentRight="true"
android:layout_marginTop="10dp"/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Scores"
android:id="@+id/Scores"
android:background="#19d2b2"
android:layout_below="@+id/save_button"
android:layout_centerHorizontal="true"
android:layout_marginTop="10dp"/>
<com.amazon.device.ads.AdLayout
android:id="@+id/adview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
Amazon:adSize="320x75"
android:layout_marginTop="400dp"/>
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="400dp"
android:layout_height="wrap_content"
ads:adUnitId="xxxxxxxxxxxxxxxx"
ads:adSize="BANNER"
android:layout_marginTop="300dp" android:layout_marginBottom="10dp"/>
答案 0 :(得分:1)
您已使用
配置封闭的RelativeLayoutandroid:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
这会减少AdView可用的水平空间量。删除这些,它应该工作。
答案 1 :(得分:0)
删除
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
来自相对布局,问题解决了