此 XML 中出现错误:解析 XML 时出错:未绑定前缀
我在此 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要在最顶层元素(在本例中为 LinearLayout 标记)中定义 xmlns 属性。
Your need to define the xmlns attribute in the topmost element, in this case, the LinearLayout tag.
您必须将命名空间声明
xmlns:android="http://schemas.android.com/apk/res/android"
放在布局 xml 的根元素中:You must put the namespace declaration
xmlns:android="http://schemas.android.com/apk/res/android"
in the root element of your layout xml: