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>
4

2 回答 2

2

你正在使用这个:

myapp:backgroundColor

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

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

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

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

于 2011-03-09T16:27:44.043 回答
1

这个答案似乎相关。

xmlns正如 Nanne 所说,您既需要正确设置,也需要在res/style/attrs.xml.

xmlns似乎是:

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

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

于 2011-03-09T16:44:21.000 回答