2017-01-31 15 views
1

以下は私のXMLファイルです。このadmobはページの一番下に表示されています。しかし、私は画面の真ん中に広告を表示する必要があります。問題を解決するために何ができるのですか?どのように画面の中央にAdmobバナー広告を表示できますか?

enter image description here

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    tools:context="test.MainActivity" 
    tools:showIn="@layout/app_bar_main"> 


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


     <android.support.v4.view.PagerTitleStrip 
      android:id="@+id/pager_title_strip" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:layout_gravity="top" 
      android:background="@color/colorPrimary" 
      android:paddingBottom="4dp" 
      android:paddingTop="4dp" 
      android:textColor="#fff" /> 

    </android.support.v4.view.ViewPager> 

    <include 
     android:id="@+id/include_playerstrip" 
     layout="@layout/play_util" /> 

    <com.google.android.gms.ads.AdView 
     xmlns:ads="http://schemas.android.com/apk/res-auto" 
     android:id="@+id/adView" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_centerHorizontal="true" 
     android:layout_alignParentBottom="true" 
     android:layout_gravity="center_horizontal" 
     ads:adSize="BANNER" 
     ads:adUnitId="@string/banner_ad_unit_id"> 
    </com.google.android.gms.ads.AdView> 


</RelativeLayout> 

私は、画面の中央を表示する必要が広告のいずれかのスクリーンショットを添付しています。私のため

<com.google.android.gms.ads.AdView 
     xmlns:ads="http://schemas.android.com/apk/res-auto" 
     android:id="@+id/adView" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_centerInParent="true" 
     ads:adSize="BANNER" 
     ads:adUnitId="@string/banner_ad_unit_id"> 
    </com.google.android.gms.ads.AdView> 

これにあなたのAdViewウィジェットを変更

+0

AdViewウィジェット内でandroid:layout_centerInParent = "true"を配置しようとしましたか? –

+0

@AdamGardnerはい私はそれを試みたが、それは私のために働いていない –

答えて

2

は、Adが水平方向および垂直方向に画面の中央に配置することを可能にしました。

関連する問題