gpt4 book ai didi

ListView 中的 Android 广告展示位置

转载 作者:行者123 更新时间:2023-11-29 18:04:24 25 4
gpt4 key购买 nike

我想在 ListView 中放置 android 广告,我阅读了一篇关于使用 admob 执行此操作的文章

相反,我选择尝试使用 Flurry 的 appcircle 来实现,但没有成功。

我仍在比较广告网络,但这是我想讨论的一个功能,因为这里不允许对广告网络进行主观比较。

哪些广告 SDK 允许我执行此操作?有没有人有关于广告自定义放置的资源

最佳答案

只需尝试在您的布局中使用 ListView 放置广告,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.google.ads.AdView android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="AD_UNIT_ID"
ads:adSize="BANNER"
ads:loadAdOnCreate="true"/>
<ListView android:id="@id/android:list"
android:layout_width="fill_parent"
android:layout_height="fill_parent"/>
<TextView android:id="@+id/android:empty"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/no_hosts"/>
</LinearLayout>

检查这个 Example ,它会帮助你。

关于 ListView 中的 Android 广告展示位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14133189/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com