res与res-auto的区别——AndroidStudio自定义属性xmlns无法识别问题
res与res-auto的区别
通常我们在布局文件中使用自定义属性的时候
会这样写
xmlns:app="http://schemas.android.com/apk/res/包路径"
但如果你当前工程是做为lib使用,那么你如上所写 ,会出现找不到自定义属性的错误 。
这时候你就可以 写成
xmlns:app="http://schemas.android.com/apk/res-auto"
摘自: http://blog.csdn.net/altair86/article/details/34438989
问题来源:
eclipse导出为 generate gradle build files后
在项目中使用自定义属性报错
xmlns:cascade="http://schemas.android.com/apk/res/com..."
Multiple annotations found at this line:
- When using a custom namespace attribute in a library project, use the namespace "http://schemas.android.com/apk/res-auto"
instead.
- Unused namespace cascade
解决:
删除导出时的所有生成文件和文件夹
而在AnroidStudio 中使用自定义属性xmlns的时候
正如in Gradle projects,always usehttp://schemas.android.com/apk/res-auto for custom attributes所说的
将eclipse中 http://schemas.android.com/apk/res/com.xxx.xxx
换成 http://schemas.android.com/apk/res-auto
摘自: http://blog.csdn.net/nwsuafer/article/details/42121521