解决Android中No resource found that matches android:TextAppearance.Material.Widget.Button.Inverse问题(示例代
【解决Android中No resource found that matches android:TextAppearance.Material.Widget.Button.Inverse问题(示例代】五陵年少金市东,银鞍白马渡春风。这篇文章主要讲述解决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 plain
copy
- /路径/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‘
推荐阅读
- 你都认识吗?PC内外接口面面观
- 金阳光測试基于控件核心技术探讨---Android自己主动化系列---2013年5月
- RN 调用安卓的原生方法(实现Toast效果)
- 原创源码角度分析Android的消息机制系列——Android消息机制概述
- 使用JMeter代理录制app测试脚本
- 使用 gradle 在编译时动态设置 Android resValue / BuildConfig / Manifes中<meta-data>变量的值
- Android SQLite 学习2
- 安卓activity之间传递数据
- android与C# WebService基于ksoap通信(C#篇)