我在將Millenial Media(http://mmedia.com/)廣告定位在屏幕底部時遇到了問題。有時候它有效,但有時廣告無緣無故地跳到屏幕中央。其他時候,廣告只是在該位置開始。有時廣告會在中間位置和底部位置之間快速跳躍。Android 4.1 RelativeLayout和底部定位廣告(mmedia)
我已經嘗試了一些相對位置,選項和CONFIGS但沒有使它正常工作。
廣告具有AlignParentBottom財產,我不知道這是否只是MMEDIA SDK或別的東西的問題。
這隻發生在最新版本的SDK中。有沒有人使用MMedia,並可以將廣告定位到屏幕底部?
我使用Google Nexus和Android 4.1。
這裏是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>
能否請您告訴我們您所使用的axml? – Cheesebaron
剛剛添加了XML。 – Grapes
嘗試添加:'android:layout_below =「@ + id/list」'到MMAdView – Cheesebaron