没有足够的空间来显示AdMob横幅(Android)

时间:2014-02-24 14:27:27

标签: android admob banner banner-ads

我在小屏幕上显示AdMob横幅时遇到问题(在横向模式下工作正常)。 在Galaxy S4上测试时,会显示广告,但仅在横向模式下在小屏幕上显示。我尝试将xml布局参数(宽度和高度)更改为match_parent,wrap_content和fill_parent,但仍然是相同的。

错误堆栈跟踪: 02-24 16:30:36.327:W / Ads(396):没有足够的空间来展示广告。需要320x50像素,但只有208x239像素。

我的xml是:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@raw/backgroundc"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <Button
        android:id="@+id/buttonGetLuck"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:background="@layout/get_luck_custom_button"
        android:onClick="buttonGetLuck"
        android:text="Get Lucky"
        android:textStyle="italic"
        android:typeface="sans" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="16dp"
        android:text="See your luck for today."
        android:textColor="#7CFC00"
        android:textSize="18sp"
        android:textStyle="italic"
        android:typeface="serif" />

    <LinearLayout
        android:id="@+id/bannerLayuout"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:orientation="horizontal"
        android:layout_centerHorizontal="true"/>

</RelativeLayout>

我的代码是:

 // Create the adView.
    adView = new AdView(this);
    adView.setAdUnitId("*******");
    adView.setAdSize(AdSize.BANNER);

    // AdMob banner layout
    LinearLayout layout = (LinearLayout)findViewById(R.id.bannerLayuout);

    // Add the adView to it.
    layout.addView(adView);

    // Initiate a generic request.
    AdRequest adRequest = new AdRequest.Builder().build();

    // Load the adView with the ad request.
    adView.loadAd(adRequest);

1 个答案:

答案 0 :(得分:1)

我认为问题可能是&#34;填充&#34;在父母观点上。

尝试删除这些行:

机器人:paddingLeft =&#34; @扪/ activity_horizo​​ntal_margin&#34; 机器人:paddingRight =&#34; @扪/ activity_horizo​​ntal_margin&#34;