私は主な活動からFragments
に切り替わります。現時点では、それぞれFragment
から新しいAdView
を呼び出していますが、私はAdView
をFragments
のすべてに見られるメインアクティビティから呼び出すだけです。Adview以下FrameLayout
ここでAdView
をFrameLayout
の中に表示しないようにする方法を知る必要があります。なぜなら、コンテンツが下部でブロックされているからです。
FrameLayout
のコンテンツの外/下にあるAdView
を入手するにはどうすればよいですか?
content_main.xml
<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"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context=".activity.MainActivity"
tools:showIn="@layout/app_bar_main">
<FrameLayout
android:id="@+id/mainFrame"
android:layout_width="match_parent"
android:layout_height="match_parent" >
</FrameLayout>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/mainFrame">
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:layout_gravity="center"
ads:adSize="BANNER"
ads:adUnitId="@string/banner_ad_unit_id">
</com.google.android.gms.ads.AdView>
</RelativeLayout>
</RelativeLayout>
:サブ'RelativeLayout'に' layout_weight = "1" を。 – doubotis
下記の私の答えをチェックし、問題が発生した場合は教えてください。 –