XML布局和清单文件中 attribute:xxx is not allowed here

时间:2024-03-13 09:01:19

今天导入网上下载的一个项目的时候。遇到了这种情况。清单文件

android:allowBackup="true"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat.NoActionBar"
tools:ignore="GoogleAppIndexingWarning"

等属性均遇到了这个问题。提示: is  not allowed here.

最后 在  

manifest节点  添加:
xmlns:tools="http://schemas.android.com/tools"  

问题解决。

XML布局和清单文件中 attribute:xxx is not allowed here