Admob违规消息Android应用程序

问题描述:

我收到了此消息,但我不明白我的应用程序有什么问题, 您能帮忙吗?Admob违规消息Android应用程序

为了礼貌,我们提醒您,您的应用当前处于 违反AdMob计划政策的状态。重要的是,这将 需要采取行动,以确保广告投放不中断。 下面请阅读你需要 采取的行动的详细信息:

发布商ID:

应用程序ID:

当前广告投放状态:活动

违规解释

发布商不得以任何 的方式更改AdMob广告的行为。这包括调整广告框的大小以切断部分广告或隐藏Ads by AdMob绰号。

需要采取的措施:请立即对您的应用进行更改,以符合 的AdMob计划政策。

当前帐户状态:活动

有时候,广告显示在像this的应用程序,那么它是否自行解决。 我的代码有什么问题可以纠正吗?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
       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" 
    tools:context=".Main" > 
    <com.google.android.gms.ads.AdView 
     android:id="@+id/adView" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     ads:adSize="SMART_BANNER" 
     ads:adUnitId="@string/banner_ad_unit_id"> 
    </com.google.android.gms.ads.AdView> 

    <org.anddev.andengine.opengl.view.RenderSurfaceView 
     android:id="@+id/xmllayoutexample_rendersurfaceview" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_centerInParent="true" 
     android:gravity="center" /> 
    </RelativeLayout> 

我认为这将是足够的添加android:layout_below="@+id/adView"到您org.anddev.andengine.opengl.view.RenderSurfaceView

+0

是的,这解决了这个问题。谢谢。 –