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