我試圖將我的廣告橫幅放在屏幕底部。但是,部分廣告出現在頂部,而其他部分則出現在底部。請把下面Android:在錯誤位置的admob廣告
wrong ad http://img513.imageshack.us/img513/4390/shot000025.png
下面是代碼是否有幫助看看圖像,
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/maingradient"
android:focusableInTouchMode="true"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/relativelayout2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/relativeLayout1" >
<ListView
android:id="@android:id/list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:cacheColorHint="@android:color/transparent"
android:divider="#00ff00"
android:fastScrollEnabled="true"
android:focusable="false"
android:listSelector="#000000"
android:paddingTop="5dp"
android:saveEnabled="true" >
</ListView>
</RelativeLayout>
<com.google.ads.AdView
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
ads:adSize="SMART_BANNER"
android:layout_alignParentBottom="true"
ads:adUnitId="a14fd64cddd4168"
ads:loadAdOnCreate="true" />
</RelativeLayout>
有人可以幫助嗎?
Thx! 拉胡爾。
你可以發佈你的Java代碼嗎?我的猜測是您在底部定義了一個XML格式的AdView(Saavn音樂),並在頂部添加了另一個Java代碼中的AdView,因此您將顯示兩個廣告。 – 2012-07-13 22:48:29