我打算将我的一个项目提交给 Bitbucket,然后我的 XML 布局文件中出现了一些错误,即 URI 未注册。我的 XML 文件中有以下 URI:http://schemas.android.com/apk/res/android 它们是自动添加的,所以我不在乎。但是现在android studio说:
URI is not registered (Settings | Project Settings | Schemas and DTDs)
所以我该怎么做。只是忽略错误或者有没有办法解决这个问题?
它发生的一个例子:
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/action_settings"
android:title="@string/action_settings"
android:orderInCategory="100"
android:showAsAction="never"/>
</menu>