如何在单个活动中添加多个 Admob 广告?

How to Add Multiple Admob ads in single activity?

提问人:Abdul Rehman 提问时间:10/29/2023 更新时间:10/29/2023 访问量:16

问:

在此活动中,我想添加多个广告。但我不能这样做。我希望在这个活动中,图片下方应该有一个广告,一个广告应该在帖子内容的中间。图片下方的广告应该是横幅广告,内容中间的广告应该是原生广告。例如,我还附上了一张截图。

enter image description here

enter image description here

并从此链接检查此活动的 Java 代码。点击这里

XML 活动代码

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <androidx.coordinatorlayout.widget.CoordinatorLayout
        android:id="@+id/coordinatorLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/bannerAdView"
        android:focusableInTouchMode="true">

        <ViewStub
            android:id="@+id/header_view"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

        <androidx.swiperefreshlayout.widget.SwipeRefreshLayout
            android:id="@+id/swipe_refresh_layout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:layout_behavior="@string/appbar_scrolling_view_behavior">

            <RelativeLayout
                android:id="@+id/lyt_home_content"
                android:layout_width="match_parent"
                android:layout_height="match_parent">

                <com.facebook.shimmer.ShimmerFrameLayout
                    android:id="@+id/shimmer_view_container"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    app:shimmer_duration="1000">

                    <ViewStub
                        android:id="@+id/shimmer_view_post_details"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content" />

                </com.facebook.shimmer.ShimmerFrameLayout>

                <androidx.core.widget.NestedScrollView
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:layout_gravity="fill_vertical"
                    android:clipToPadding="false"
                    android:fillViewport="true"
                    android:isScrollContainer="false"
                    app:layout_behavior="@string/appbar_scrolling_view_behavior">

                    <include
                        android:id="@+id/lyt_main_content"
                        layout="@layout/include_post_detail"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent" />

                </androidx.core.widget.NestedScrollView>

                <include
                    android:id="@+id/lyt_failed_home"
                    layout="@layout/include_no_network"
                    android:visibility="gone" />

                <FrameLayout
                    android:id="@+id/customViewContainer"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:visibility="gone" />

            </RelativeLayout>

        </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>

    </androidx.coordinatorlayout.widget.CoordinatorLayout>

    <com.solodroid.ads.sdk.ui.BannerAdView
        android:id="@+id/bannerAdView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"/>

</RelativeLayout>
嵌套 AdMob 广告 横幅

评论


答: 暂无答案