欢迎访问 生活随笔!

生活随笔

当前位置: 首页 > 运维知识 > Android >内容正文

Android

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

发布时间:2025/7/25 Android 94 豆豆
生活随笔 收集整理的这篇文章主要介绍了 解决Android中No resource found that matches android:TextAppearance.Material.Widget.Button.Inverse问题... 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

如果在刚够构建Android Studio项目的时候,运行发现,出现没找到资源的错误!找不到com.android.support/appcompat-v7/23.0.1/res/values-v23/values-v23.xml

[html] view plaincopy
  • /路径/app/build/intermediates/exploded-aar/com.android.support/appcompat-v7/23.0.1/res/values-v23/values-v23.xml  
  • Error:Error retrieving parent for item: No resource found that matches the given name 'android:TextAppearance.Material.Widget.Button.Inverse'.  
  • 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'

    转载于:https://www.cnblogs.com/lianghe01/p/7044315.html

    总结

    以上是生活随笔为你收集整理的解决Android中No resource found that matches android:TextAppearance.Material.Widget.Button.Inverse问题...的全部内容,希望文章能够帮你解决所遇到的问题。

    如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。