当我导入appcompat_v7获得以下错误

时间:2015-09-19 14:54:11

标签: android

我已经下载了api 15,22。当我导入v7时,我收到了以下错误。

[2015-09-19 20:21:36 - AndroidHello] C:\Users\DELL\AndroidApps\WorkSpaces\appcompat_v7\res\values-v23\styles_base.xml:20: error: Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.Button.Colored'.
[2015-09-19 20:21:36 - AndroidHello] 
[2015-09-19 20:21:36 - AndroidHello] C:\Users\DELL\AndroidApps\WorkSpaces\appcompat_v7\res\values-v23\styles_base_text.xml:19: error: Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Inverse'.
[2015-09-19 20:21:36 - AndroidHello] 
[2015-09-19 20:21:37 - appcompat_v7] C:\Users\DELL\AndroidApps\WorkSpaces\appcompat_v7\res\values-v23\styles_base.xml:20: error: Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.Button.Colored'.
[2015-09-19 20:21:37 - appcompat_v7] 
[2015-09-19 20:21:37 - appcompat_v7] C:\Users\DELL\AndroidApps\WorkSpaces\appcompat_v7\res\values-v23\styles_base_text.xml:19: error: Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Inverse'.
[2015-09-19 20:21:37 - appcompat_v7] 
[2015-09-19 20:21:39 - AndroidHello] C:\Users\DELL\AndroidApps\WorkSpaces\appcompat_v7\res\values-v23\styles_base.xml:20: error: Error retrieving parent for item: No resource found that matches the given name 'android:Widget.Material.Button.Colored'.
[2015-09-19 20:21:39 - AndroidHello] 
[2015-09-19 20:21:39 - AndroidHello] C:\Users\DELL\AndroidApps\WorkSpaces\appcompat_v7\res\values-v23\styles_base_text.xml:19: error: Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Inverse'.
[2015-09-19 20:21:39 - AndroidHello] 

1 个答案:

答案 0 :(得分:0)

下载api 23并在你的gradle文件中将compileSdkVersion更改为23。

compileSdkVersion 23

targetSdkVersion 23

buildToolsVersion '23.0.1'

并确保导入最新版本的appcompat:

compile 'com.android.support:appcompat-v7:23.0.1'

并检查是否已安装sdk Build-Tools 23.0.1。

enter image description here