Android Error retrieving parent for item: No resource found that matches the given name '...'

来源:互联网 发布:腾讯云mysql 快吗 编辑:程序博客网 时间:2024/05/17 08:07

记录一下,以前没有遇到过这个问题,这个问题困扰我好长时间。我起初用Android Studio-1.2版本创建的项目api19编译的,后来换成Android studio-1.4版本后加载这个项目就一直报下面的错误:

E:\........app\build\intermediates\exploded-aar\com.android.support\appcompat-v7\23.1.0\res\values-ldltr-v21\values-ldltr-v21.xml
Error:(2) Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.Spinner.Underlined'.
E:\.........\app\build\intermediates\exploded-aar\com.android.support\appcompat-v7\23.1.0\res\values-ldrtl-v23\values-ldrtl-v23.xml
Error:(2) Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.Spinner.Underlined'.
E:\..........\app\build\intermediates\exploded-aar\com.android.support\appcompat-v7\23.1.0\res\values-v21\values-v21.xml
Error:(2) Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Inverse'.
Error:(2) Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Large.Inverse'.

。。。。。。。。。。

.。。。。。。。。。。

网上各种查,最后查到原因是我的编译api19太低了,后来换成api23后就OK了。

Compile SDK Version 与Build Tools Version 最好一致;如下图


编译结果:

========================================================================================

下面是错误的,改成如下图:


会报错,如下图


=====================================================================

记录到此,相信以后遇到类似问题知道怎么纠正了。

至于其中缘由,希望过路的大神不吝赐教啊!!!!


1 0