Attribute is missing the Android namespace prefix

你的名字 2022-09-21 11:58 124阅读 0赞

Attribute is missing the Android namespace prefix

一、问题描述

在XML文件中定义属性出现错误提示:Attribute is missing the Android namespace prefix,这是由于命名空间导致提示异常。

Center

  1. 命名空间完整格式 xmlns:namespace-prefix="namespaceURI",而xmlns="namespaceURI"表示取用默认命名空间。

解决方法就是加上:

  1. xmlns:tools="http://schemas.android.com/tools"
  2. xmlns:app="http://schemas.android.com/apk/res-auto"

就没有错误啦

Center 1

发表评论

表情:
评论列表 (有 0 条评论,124人围观)

还没有评论,来说两句吧...

相关阅读