Android Admob一直告诉我我的应用程序不符合指南要求

Android Admob一直告诉我我的应用程序不符合指南要求,android,navigation,admob,ads,usability,Android,Navigation,Admob,Ads,Usability,我想在我的第一个Android应用程序中加入一些广告,但Admob取消了这些广告。原因:“站点行为:导航。”我尝试了几种方法来解决它,但它仍然不符合Admob的要求,我不知道为什么。阅读指南没有帮助,我不知道我的应用程序中用户的导航到底有什么问题。也许我的应用程序不适用于广告,因为它是一个动态内容游戏的工具。我很高兴你知道问题的原因是什么 您无法在此处找到我的应用程序: 在2个活动的底部有2个横幅广告 我已经重新定位了浮动操作按钮,以便在横幅和按钮之间有更多的空间 如果未安装游戏,您将被重定向到

我想在我的第一个Android应用程序中加入一些广告,但Admob取消了这些广告。原因:“站点行为:导航。”我尝试了几种方法来解决它,但它仍然不符合Admob的要求,我不知道为什么。阅读指南没有帮助,我不知道我的应用程序中用户的导航到底有什么问题。也许我的应用程序不适用于广告,因为它是一个动态内容游戏的工具。我很高兴你知道问题的原因是什么

您无法在此处找到我的应用程序:

在2个活动的底部有2个横幅广告

我已经重新定位了浮动操作按钮,以便在横幅和按钮之间有更多的空间

如果未安装游戏,您将被重定向到应用程序的play store页面,在以前的版本中,当您单击“转到游戏”时,不会发生任何事情



您可以尝试在recyclerview项目中添加横幅广告。你可以解决这个问题

您可以尝试在recyclerview项目中添加横幅广告。你可以解决这个问题

我认为你必须把你有意见的相对位置去掉。因为with和height也被设置为匹配父级,这占据了整个屏幕

否则,您必须确保您的横幅广告不会显示在listview上方。因为这违反了admob的政策


不允许在你的应用程序内容上方显示广告。

我认为你必须删除有广告的相对位置。因为with和height也被设置为匹配父级,这占据了整个屏幕

否则,您必须确保您的横幅广告不会显示在listview上方。因为这违反了admob的政策


不允许在应用程序内容上方显示广告。

使用相对布局,并将recyclerview置于adview上方。有时adview会覆盖应用程序的内容,用户无法与所有内容进行交互。确保横幅广告下方有注释。

使用相对布局,并将回收视图放置在adview上方。有时adview会覆盖应用程序的内容,用户无法与所有内容进行交互。确保横幅广告下方没有任何内容。

谢谢您的回答!我用我正在使用的布局xml编辑了我的文章。但是广告播出了两周,一切都很好。但是Admob认为我的应用程序不符合要求,这就是为什么你现在无法在我的应用程序中看到横幅。有些事情一定违反了指导原则,但我不知道这是什么,谢谢你的回答!我用我正在使用的布局xml编辑了我的文章。但是广告播出了两周,一切都很好。但是Admob认为我的应用程序不符合要求,这就是为什么你现在无法在我的应用程序中看到横幅。有些东西一定违反了指导方针,但我不知道是什么
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:app="http://schemas.android.com/apk/res-auto"
   xmlns:tools="http://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   tools:context=".MainActivity">

   <androidx.recyclerview.widget.RecyclerView
       android:id="@+id/recycler_view"
       android:layout_width="match_parent"
       android:layout_height="match_parent"
       android:layout_marginBottom="52dp"
       tools:listitem="@layout/datasetitem" />


   <com.google.android.material.floatingactionbutton.FloatingActionButton
       android:id="@+id/button_compare"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_gravity="bottom|end"
       android:layout_marginEnd="22dp"
       android:layout_marginBottom="148dp"
       android:src="@drawable/ic_compare_arrows_black_24dp"
       android:visibility="invisible"
       app:backgroundTint="@color/red" />

   <com.google.android.material.floatingactionbutton.FloatingActionButton
       android:id="@+id/button_add_dataset"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_gravity="bottom|end"
       android:layout_marginBottom="78dp"
       android:layout_marginEnd="22dp"
       android:src="@drawable/ic_add_black_24dp"
       app:backgroundTint="@color/red" />


   <RelativeLayout
       android:layout_width="match_parent"
       android:layout_height="match_parent">

             <com.google.android.gms.ads.AdView xmlns:ads="http://schemas.android.com/apk/res-auto"
                 android:id="@+id/adView"
                 android:layout_width="wrap_content"
                 android:layout_height="wrap_content"
                 android:layout_alignParentBottom="true"
                 android:layout_centerHorizontal="true"
                 ads:adSize="BANNER"
                 ads:adUnitId="ca-app-pub-7240053507946831/3541202378"></com.google.android.gms.ads.AdView>


       <!--  ads:adUnitId="ca-app-pub-3940256099942544/6300978111"></com.google.android.gms.ads.AdView>  -->



  </RelativeLayout>


</androidx.coordinatorlayout.widget.CoordinatorLayout>