我该如何解决这个问题?我不能使用MAGIC横幅,因为它只会在平板电脑上显示大横幅,这不是目标。
这是横幅的布局文件:
<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/admob_banner"
android:layout_gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adSize="LARGE_BANNER"/>
它会动态添加到此灰色容器中:
<FrameLayout
android:id="@+id/ad_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center_horizontal"
android:background="@color/material_grey_800"
android:clipChildren="false"
android:clipToPadding="false">
<include
layout="@layout/adblocker_banner"
android:visibility="gone"/>
</FrameLayout>