此 XML 中出现错误:解析 XML 时出错:未绑定前缀

发布于 2024-11-04 09:44:31 字数 617 浏览 7 评论 0原文

我在此 xml 文件中出现解析 XML 时出错:未绑定前缀

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout>
    <TextView xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/sipLabel"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"/>
    <ImageView android:src="@drawable/connected" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:layout_weight="0.35" android:gravity="center"/>
</LinearLayout>

错误位于 中。 可能是什么问题?

非常感谢。

I have an Error parsing XML: unbound prefix in this xml file:

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout>
    <TextView xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/sipLabel"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent"/>
    <ImageView android:src="@drawable/connected" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:layout_weight="0.35" android:gravity="center"/>
</LinearLayout>

The error is in <ImageView>.
What could be the problem?

Thank you very much.

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

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

发布评论

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

评论(2

若沐 2024-11-11 09:44:33

您需要在最顶层元素(在本例中为 LinearLayout 标记)中定义 xmlns 属性。

Your need to define the xmlns attribute in the topmost element, in this case, the LinearLayout tag.

深爱成瘾 2024-11-11 09:44:31

您必须将命名空间声明 xmlns:android="http://schemas.android.com/apk/res/android" 放在布局 xml 的根元素中:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" [...]

You must put the namespace declaration xmlns:android="http://schemas.android.com/apk/res/android" in the root element of your layout xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" [...]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文