Как исправить "ОБЪЯВЛЕНИЕ ОБЪЯВЛЕНИЙ И КОНТЕНТА" - PullRequest
0 голосов
/ 02 июня 2019

У меня есть живое приложение, и в нем используется баннер admob.сегодня я получил предупреждение "ОБЪЯВЛЕНИЕ ОБЪЯВЛЕНИЙ И КОНТЕНТА"

Это мой код xml, где я размещаю рекламный баннер

<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="info.white.kora.Main" >


<ProgressBar

    android:layout_width="fill_parent"
    android:layout_height="5dip"
    android:layout_alignParentTop="true"
    style="?android:attr/progressBarStyleHorizontal"
    android:id="@+id/progressbar_Horizontal"
    android:max="100"
    android:background="#228b22"
    />

<WebView
    android:id="@+id/webView1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true" />



<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_gravity="bottom|center|end"
    ads:adSize="SMART_BANNER"
    ads:adUnitId="ca-app-pub-xxxxxxxxxxxxxxxxxxxxxx"></com.google.android.gms.ads.AdView>

Как использовать баннер admob с веб-просмотромправильно?

1 Ответ

0 голосов
/ 03 июня 2019

Добавьте следующие атрибуты в Webview.

        android:layout_above="@+id/adView"
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...