无法调整admob ad android

时间:2014-03-18 12:59:26

标签: android eclipse admob

这是我第一次使用admob广告,我无法正确调整广告并收到错误。

03-18 17:57:58.751: E/Ads(9804): Not enough space to show ad! Wants: <480, 75>, Has: <464, 674>

请帮助布局。这是我的布局。

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:id="@android:id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >
    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:padding="5dp" >

         <com.google.ads.AdView
            android:id="@+id/adView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            ads:adSize="BANNER"
            ads:adUnitId="xxxx"
            ads:loadAdOnCreate="true"
            ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID" />
        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal" >
            <HorizontalScrollView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:fillViewport="true"
                android:scrollbars="none" >
                <TabWidget
                    android:id="@android:id/tabs"
                    android:layout_width="235dp"
                    android:layout_height="62dp"
                    android:layout_marginLeft="0dip"
                    android:layout_marginRight="0dip" />
            </HorizontalScrollView>

        </LinearLayout>


        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="92dp"
            android:layout_weight="0.13"
            android:padding="2dp" >
        </FrameLayout>


    </LinearLayout>

</TabHost>

1 个答案:

答案 0 :(得分:1)

Admob使用指定的尺寸。 BANNER大小在文档中声明。您需要拥有与所请求的广告尺寸相对应的有效广告资源。

我在尺寸方面苦苦挣扎并提出了解决方案,试试这个

<HorizontalScrollView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >

        <com.google.ads.AdView
            android:id="@+id/adView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            ads:adSize="BANNER"
            ads:adUnitId="xxxx"
            ads:loadAdOnCreate="true"
            ads:testDevices="TEST_EMULATOR, TEST_DEVICE_ID" />
    </HorizontalScrollView>

在我的情况下,我必须添加更多控件,但这会给你无限大小,以便你的广告适合。