我在将 Millenial Media(http://mmedia.com/) 广告定位在屏幕底部时遇到问题。有时它会起作用,但有时广告会无缘无故地跳到屏幕中央。其他时候,广告只是从那个位置开始。有时广告只是在中间位置和底部位置之间快速跳跃。
我尝试了许多相对位置、选项和配置,但没有任何东西可以正常工作。
该广告具有 AlignParentBottom 属性,我不确定这是否只是 MMedia sdk 或其他问题的问题。
这仅在最新版本的 SDK 中开始发生。有没有人使用 MMedia 并且可以对将广告定位到屏幕底部有所了解?
我使用带有 Android 4.1 的 Google Nexus。
这是 XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<GameView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
<com.millennialmedia.android.MMAdView
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"/>
</RelativeLayout>