在 TabbedView 上方添加 AdMob 广告?

发布于 2024-10-20 23:09:32 字数 1146 浏览 3 评论 0原文

当我尝试将 AdMob 广告引用放在选项卡式视图上方时,收到“解析 XML 文件时出错:未绑定前缀”消息。有什么想法如何解决这个问题吗?

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost" android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <LinearLayout android:orientation="vertical"
        android:layout_width="fill_parent" android:layout_height="fill_parent"
        android:padding="5dp">
        <com.admob.android.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" />
        <TabWidget android:id="@android:id/tabs"
            android:layout_width="fill_parent" android:layout_height="wrap_content" />
        <FrameLayout android:id="@android:id/tabcontent"
                android:layout_width="fill_parent" android:layout_height="fill_parent"
            android:padding="5dp" />
    </LinearLayout>
</TabHost>

I am getting an "Error parsing XML file: Unbound prefix" when I try to put my AdMob ad reference above a tabbed view. Any ideas how to fix that?

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost" android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <LinearLayout android:orientation="vertical"
        android:layout_width="fill_parent" android:layout_height="fill_parent"
        android:padding="5dp">
        <com.admob.android.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" />
        <TabWidget android:id="@android:id/tabs"
            android:layout_width="fill_parent" android:layout_height="wrap_content" />
        <FrameLayout android:id="@android:id/tabcontent"
                android:layout_width="fill_parent" android:layout_height="fill_parent"
            android:padding="5dp" />
    </LinearLayout>
</TabHost>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小嗲 2024-10-27 23:09:32

您正在使用此:

myapp:backgroundColor

但我没有看到任何“myapp”前缀的声明。所以这可能是错误的根源。

就像在 xml 中声明“android”命名空间一样:

xmlns:android="http://schemas.android.com/apk/res/android"

“myapp”命名空间也应该在某处有一个声明

You're using this:

myapp:backgroundColor

but I don't see any declaration of the 'myapp' prefix. so that might be the source of the error.

Just like the "android" namespace is declared in the xml like this:

xmlns:android="http://schemas.android.com/apk/res/android"

the 'myapp' namespace should have a declaration somewhere also

記憶穿過時間隧道 2024-10-27 23:09:32

这个答案似乎相关。

正如 Nanne 所说,您需要正确设置 xmlns,以及在 res/style/attrs.xml 中定义的属性。

xmlns 似乎是:

xmlns:admob="http://schemas.android.com/apk/res/com.example.package"

例如 attrs.xml,查看上面的答案。

This answer seems related.

You need both the xmlns set correctly, as Nanne said, as well as your attributes defined in res/style/attrs.xml.

The xmlns appears to be:

xmlns:admob="http://schemas.android.com/apk/res/com.example.package"

For an example attrs.xml, check out the answer above.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文