1

我有ViewPager Android應用程序中實現這樣的:的AdView和ViewPager

http://www.youtube.com/watch?v=C6_1KznO95A

我不知道如何實現ViewPager下面的AdView。我試圖以編程方式將XML文件放在ViewPager下面,並以xml格式顯示。沒有錯誤,但廣告沒有顯示。

我的XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:orientation="vertical"> 

<android.support.v4.view.ViewPager 
android:id="@+id/pager" 
android:layout_width="match_parent" 
android:layout_alignParentBottom="top" 
android:layout_height="0dp" 
android:layout_weight="1"/> 

<com.google.ads.AdView 
android:id="@+id/ad" 
android:layout_width="wrap_content" 
android:layout_height="wrap_content" 
android:layout_alignParentLeft="true" 
android:layout_alignParentRight="true" 
android:layout_alignParentBottom="true" 
android:layout_below="@+id/pager" 
ads:adSize="BANNER" 
ads:adUnitId="@string/admob_publisher_id" 
ads:loadAdOnCreate="true" > 
</com.google.ads.AdView> 
</RelativeLayout> 
+0

@GavriloPrincip請不要轉發相同的問題。你不會增加某人回答它的機會,但是你會增加從高等管理團隊獲得警告的機會。此外,它污染問題清單,對別人不好。謝謝! – davidcesarino

回答

1

首先,沒有android:layout_weightRelativeLayout

其次,沒有android:orientationRelativeLayout

如果你想利用這些,使用LinearLayout,而不是一個RelativeLayout。如果你這樣做,擺脫來自AdView三個android:layout_alignParent*屬性,與android:layout_below一起,因爲這些都是RelativeLayout,不LinearLayout

結果應該工作,假設AdView作品與android:layout_height="wrap_content"

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:orientation="vertical"> 

    <android.support.v4.view.ViewPager 
    android:id="@+id/pager" 
    android:layout_width="match_parent" 
    android:layout_height="0dp" 
    android:layout_weight="1"/> 

    <com.google.ads.AdView 
    android:id="@+id/ad" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    ads:adSize="BANNER" 
    ads:adUnitId="@string/admob_publisher_id" 
    ads:loadAdOnCreate="true" > 
    </com.google.ads.AdView> 
</LinearLayout>