裏面我想在我screen.It展示廣告的底部添加的AdMob,但在所有按鈕的下方顯示,並且還它隱藏註銷按鈕。我也看到了這個網站的其他問題,但它並沒有解決我的問題。有些身體可以幫助我解決我做了什麼或者我該做什麼。Android的AdMob的adeed卻隱藏着其他按鍵滾動型
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
...
//I just delete other buttons
//but search also here
....
<Button
android:id="@+id/but_logout"
style="@style/login"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/but_search"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
android:layout_marginTop="8dp"
android:onClick="click_but_logout"
android:text="@string/label_logout" />
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
ads:adSize="BANNER"
ads:adUnitId="@string/ad_unit_id"/>
</RelativeLayout>
</ScrollView>
你想AD瀏覽是靜態的底頁上,無論滾動視圖狀態? – 2014-10-30 11:24:44
我想在screen.Not底部的廣告在註銷button.I加入了滾動看到所有的按鈕,因爲有很多按鈕列表的註銷之前結束button.If我刪除了滾動我可以看到只有少數按鈕並不能滾動波紋管看別人。 – 2014-10-30 11:34:44