我打算将我的项目提交给Bitbucket,然后我的XML-Layout文件中出现了一些错误,即URI未注册。 我的XML文件中有以下URI:http://schemas.android.com/apk/res/android 它们是自动添加的,所以我不在乎。但现在android工作室说:
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>