나는 ViewPager와 안드로이드 응용 프로그램은 다음과 같이 구현 :AdMob AdView 및 ViewPager?
http://www.youtube.com/watch?v=C6_1KznO95A
나는 ViewPager 아래로 AdView를 구현하는 방법을 모르겠어요. ViewPager 아래에 AdView를 프로그래밍 방식 및 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>
실제로 XML 레이아웃을 게시하십시오. –