本文主要是介绍解决Error:(3) Error retrieving parent for item: No resource found that matches the given name 'android,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
相信会有很多朋友遇到这个问题,所以我从stackoverfloat中翻译了答案。亲测解决了我的问题
报错信息:
- Error:(3) Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Borderless.Colored'.
- Error:(4) Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Colored'.
- Error:(3) Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Borderless.Colored'.
- Error:(4) Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Colored'.
解决方案:
使用支持版本25.1.0。 我无法重现的问题,一个小项目针对较旧的版本(24),但主要是支持库版本错误。 尝试至少移动到主要版本25,删除整个构建目录并再次同步项目。 请注意,更改支持版本将使您将compileSdkVersion更改为相同的主要版本。
还要仔细检查是否已经为属性24明确定义了资源文件(如截图所示)。
意思就是把你 build.gradle中的compileSdkVersion改成 25 版本以及以上!其他不支持。
这篇关于解决Error:(3) Error retrieving parent for item: No resource found that matches the given name 'android的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!