2015-10-18 27 views
4

我有一個ViewPager用3個片段,放置一個橫幅廣告,使得它位於下方,並且從單獨ViewPager

enter image description here

在我已放置在橫幅廣告的每個片段的底部。

我想什麼是有一個橫幅廣告在整個視圖的底部,而不是一個在每個片段中

enter image description here

這樣,我只需要加載一個廣告,它是始終放置在屏幕的底部。

我的ViewPager Activity是我認爲橫幅廣告應該去的地方,但我不知道如何將它移動到那裏。目前在斷肢

<com.google.android.gms.ads.AdView 
     android:id="@+id/adMainViewTrial" 
     android:layout_width="320dp" 
     android:layout_height="50dp" 
     android:layout_marginTop="16dp" 
     ads:adSize="BANNER" 
     ads:adUnitId="My Id" > 
</com.google.android.gms.ads.AdView> 

我希望我做的這個意義上說

<android.support.v4.view.ViewPager 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/pager" 
android:label="@string/app_name" 
android:layout_width="match_parent" 
android:layout_height="match_parent"> 
</android.support.v4.view.ViewPager> 

廣告多數民衆贊成。我仍然對自己在這裏所做的事情有一個微妙的把握,所以所有的幫助肯定是值得讚賞的。

enter image description here

繼承人我的應用程序的圖片作爲是

回答

1

請檢查一下。

我ViewPager活動

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:ads="http://schemas.android.com/apk/res-auto" 
    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" 
     android:label="@string/app_name" > 
    </android.support.v4.view.ViewPager> 

    <com.google.android.gms.ads.AdView 
     android:id="@+id/adMainViewTrial" 
     android:layout_width="320dp" 
     android:layout_height="50dp" 
     android:layout_marginTop="16dp" 
     ads:adSize="BANNER" 
     ads:adUnitId="My Id" > 
    </com.google.android.gms.ads.AdView> 

</LinearLayout> 

可以在MyViewPagerActivity初始化廣告。

我希望它能幫助你。

+0

謝謝你,那就是我正在尋找 – Niallty

+1

很高興它解決了。祝你好運。 – Hasanaga