XML布局和清单文件中 attribute:xxx is not allowed here
今天导入网上下载的一个项目的时候。遇到了这种情况。清单文件android:allowBackup="true"android:supportsRtl="true"android:theme="@style/Theme.AppCompat.NoActionBar"tools:ignore="GoogleAppIndexingWarning"等属性均遇到了这个问题。提示: is no...
·
今天导入网上下载的一个项目的时候。遇到了这种情况。清单文件
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"
问题解决。

更多推荐

所有评论(0)