gpt4 book ai didi

java - 解析 xml 时出错 : unbound prefix from com. google.android.gms.ads.AdView

转载 作者:行者123 更新时间:2023-12-01 13:50:26 24 4
gpt4 key购买 nike

<com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
ads:adUnitId="**************"
ads:adSize="BANNER"
ads:loadOnCreate="true"
android:id="@+id/adView"/>

我在这里有这段代码,带有 xmlns:ads,但仍然收到未绑定(bind)前缀的错误,并且缺少需要 XML 属性“adsize”。

最佳答案

在您的情况下,添加了两个 xmlns:ads namespace 。
删除 xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads",它将起作用。
使用以下 xmlns 我也遇到了同样的问题,我可以解决这个问题。
xmlns:ads="http://schemas.android.com/apk/res-auto"
整个广告 View 的代码如下。

    <com.google.android.gms.ads.AdView
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:id="@+id/adView"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/textView1"
ads:adSize="BANNER"
ads:adUnitId="ca-app-pub-3940256099942544/6300978111"/>

关于java - 解析 xml 时出错 : unbound prefix from com. google.android.gms.ads.AdView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23335190/

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