码迷,mamicode.com
首页 > 移动开发 > 详细

解决Android中No resource found that matches android:TextAppearance.Material.Widget.Button.Inverse问题

时间:2016-12-28 21:00:18      阅读:323      评论:0      收藏:0      [点我收藏+]

标签:技术分享   widget   button   api   article   version   text   class   .net   

解决Android中No resource found that matches android:TextAppearance.Material.Widget.Button.Inverse问题
http://blog.csdn.net/u012336923/article/details/48289485

 

  1. /路径/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v23/values-v23.xml  
  2. Error:Error retrieving parent for item: No resource found that matches the given name ‘android:TextAppearance.Material.Widget.Button.Inverse‘.  
  3. Error:Error retrieving parent for item: No resource found that matches the given name ‘android:Widget.Material.Button.Colored‘.

这是API 23(Android 6.0)中的资源文件,而查看build.gradle,编译的SDK只是为21,我们可以尝试将compileSdkVersion设为23(如果sdk里面没有下载API 23的,则需要下载),问题解决!

如果不想下载API 23怎么解决呢?降低appcompat的版本:将build.gradle里面的dependencies对应的appcompat版本降低:

技术分享

将compile ‘com.android.support:appcompat-v7:23.0.1‘的版本改为:‘com.android.support:appcompat-v7:22.2.1‘

如果想了解更多:http://stackoverflow.com/questions/32092511/resource-error-in-android-studio-after-update-no-resource-found

 

解决Android中No resource found that matches android:TextAppearance.Material.Widget.Button.Inverse问题

标签:技术分享   widget   button   api   article   version   text   class   .net   

原文地址:http://www.cnblogs.com/bluestorm/p/6230375.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!