Applicaion使用Google Play服务向用户展示广告。但它只显示了部分内容。 它看起来像
一段时间横幅(下一个)变成全尺寸。
这种行为可能是什么原因? DrawerLayout,appcompat ActionBar ......?我不确定这个问题来自Google Play服务而不是admob lib。布局中没有重叠元素。
布局文件:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".HomeActivity">
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment
android:id="@+id/content_search"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.dimetil.gost.fragment.SearchFragment"
android:tag="SearchFragment" />
<fragment
android:id="@+id/content_favorites"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.dimetil.gost.fragment.FavoritesFragment"
android:tag="FavoritesFragment" />
<fragment
android:id="@+id/content_gost"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="com.dimetil.gost.fragment.GostFragment"
android:tag="GostFragment" />
<ProgressBar
android:id="@+id/progress"
style="?android:attr/progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:indeterminateOnly="true"
android:visibility="invisible" />
</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"
ads:adUnitId="@string/admob_id"
ads:adSize="BANNER"
android:visibility="gone" />
</FrameLayout>
<ListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:choiceMode="singleChoice"
android:background="@android:color/background_light" />
</android.support.v4.widget.DrawerLayout>
答案 0 :(得分:0)
它没有解决方案。这是设备或自定义操作系统问题(华为G300 / Cyanogenmod 11 / Android 4.4.4)。 此设备上也看到了其他损坏的广告。