0

我正在尝试在我的应用程序上实施千禧年媒体广告。我已经通过 XML 设置了它,但是当我运行应用程序时,它只显示一个占据一半屏幕的白色矩形。

同样在我的日志中,我得到一个

Millennial ad return failed. Zero content lenght returned.

我的 XML 如下所示:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://millennialmedia.com/android/schema"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:id="@+id/mainLay">

    <com.millennialmedia.android.MMAdView
        android:id="@+id/mmadview"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        app:apid="APID"
        app:adType="MMBannerAdTop"
        app:refreshInterval="30"
        app:accelerate="true"
        app:ignoreDensityScaling="false"
    />

    <ListView
        android:id="@+id/list"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >
    </ListView>
</LinearLayout>
4

1 回答 1

2

这是千禧年媒体的杰森。这应该通过正确调整广告单元的大小来解决。看看XML 布局

您会看到 XML 包括:

app:height="60"
app:width="480"

这将限制广告,使其不会占据屏幕并导致 SDK 向我们的服务器询问正确大小的广告,这可以解决您的无响应问题。

如果您仍然没有看到我们填写您的广告请求,或者如果您对 SDK 有任何其他问题,请随时在https://support.mmedia.com/.

于 2012-10-12T21:10:24.640 回答