gpt4 book ai didi

java - 在 ListView 中包含 AdMobs 广告

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

我想在我的应用程序中包含 AdMobs 广告,但我不确定如何添加它们。

我的主要 Activity 在我的 main.xml 上调用了 setContentView,但是我的 main.xml 只包含一个 ListView

<ListView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawSelectorOnTop="true"
/>

将广告 View 添加到布局中,

<ListView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:myapp="http://schemas.android.com/apk/res/com.t3hh4xx0r.romcrawler"
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:drawSelectorOnTop="true" >

<com.google.ads.AdView
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
myapp:backgroundColor="#000000"
myapp:primaryTextColor="#FFFFFF"
myapp:secondaryTextColor="#CCCCCC" />
</ListView>

当然会导致启动时强制关闭,因为 listView 不允许有子布局。

解决这个问题的最佳方法是什么?在 java 中创建广告 View ?如果是这样,您能否提供一些示例代码来说明我将如何创建它?

提前致谢!

最佳答案

创建如下布局:这样广告将显示在底部。通过将 weightSum 设置为 1,然后说 ListView 的权重为 1,它将占用创建广告后剩余的所有空间。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:weightSum="1" >

<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:background="#E4E9F5"
android:cacheColorHint="#00000000" />

<com.google.ads.AdView
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:adUnitId="your_adunitid_here"
ads:loadAdOnCreate="true" />

</LinearLayout>

关于java - 在 ListView 中包含 AdMobs 广告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8734137/

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