0
我收到了此消息,但我不明白我的應用程序有什麼問題, 您能幫忙嗎?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>
是的,這解決了這個問題。謝謝。 –