我收到了此消息,但我不了解我的应用程序有什么问题,
你能帮忙吗?
出于礼貌,我们提醒您,您的应用当前处于
违反AdMob计划政策。重要的是,这将
您需要采取行动,以确保广告投放不会中断。
请阅读以下详细信息,了解您需要采取的措施
采取:
发布者ID:
应用程式编号:
当前广告投放状态:有效
违规解释
发布商不得在任何情况下更改AdMob广告的行为
办法。这包括调整广告框架的大小以切断部分广告或
隐藏AdMob的Ads广告。
需要采取的措施:请立即对您的应用进行更改以符合规定
使用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
中就足够了