No resource found that matches the given name 'android:TextAppearance.Material...'解决办法

      Android Studio在build时,提示

Error:(4) Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.
Button.Inverse'.

问题描述,没有找到该资源!

出现这个问题的原因是,“android:TextAppearance.Material.Widget.Button.Inverse”这个属性是API 23(Android 6.0)中的资源文件,而build.gradle中编译的SDK是小于23,即“compileSdkVersion *”,解决办法有两种,

1.修改build.gradle的编译版本,将“compileSdkVersion *”修改为“compileSdkVersion 23”;(如果没有API 23,则需要下载)

2.修改build.gradle的dependencies对应的appcompat版本降低;

No resource found that matches the given name 'android:TextAppearance.Material...'解决办法_第1张图片

将“ compile 'com.android.support:appcompat-v7:24.2.0'”修改为“ compile 'com.android.support:appcompat-v7:22.2.1'”。

修改完成后,重新同步build.gradle,就ok了!

你可能感兴趣的:(android,studio使用问题汇总,Android,Studio使用问题汇总)