Android Studio: баннерная реклама через Webview - PullRequest
0 голосов
/ 01 марта 2020

как можно добавить рекламный баннер Google поверх веб-просмотра? Он должен отображаться внизу и поверх веб-просмотра, а не под.

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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">

    <com.google.android.gms.ads.AdView
        android:id="@+id/adView"
        android:layout_width="fill_parent"
        android:layout_height="89dp"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        app:adSize="BANNER"
        app:adUnitId="ca-app-pub-xxxxxxxxxxxxxxxx/xxxxxxxxxx"
        tools:ignore="MissingConstraints"
        tools:layout_editor_absoluteX="1dp"></com.google.android.gms.ads.AdView>


    <WebView
        android:id="@+id/webView"
        android:layout_width="fill_parent"
        android:layout_height="409dp"

    </WebView>
</androidx.constraintlayout.widget.ConstraintLayout>

1 Ответ

0 голосов
/ 01 марта 2020

Вы можете изменить свой ConstraintLayout на RelativeLayout, а затем просто разместить веб-представление поверх AdView.

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:ads="http://schemas.android.com/apk/res-auto"
    android:id="@+id/main"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical">

    <WebView
        android:id="@+id/myWebView"
        android:layout_above="@+id/adView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />

    <com.google.android.gms.ads.AdView
        android:id="@+id/adView"
        ads:adSize="BANNER"
        ads:adUnitId="ca-app-pub-3940256099942544/6300978111"
        android:layout_width="match_parent"
        android:background="@android:color/transparent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true">
    </com.google.android.gms.ads.AdView>

</RelativeLayout>

Я уверен, что вы можете сохранить ограничение ограничения, но мне нравится делать это следующим образом. Надеюсь, это поможет:)

...