首页 > 代码库 > Android - 错误:"No resource found that matches the given name android:Theme.Material"
Android - 错误:"No resource found that matches the given name android:Theme.Material"
Android - 错误:"No resource found that matches the given name android:Theme.Material"
本文地址: http://blog.csdn.net/caroline_wendy
错误: "No resource found that matches the given name ‘android:Theme.Material.Light.DarkActionBar‘"
原因是:
build.gradle出错, Material是Android L版本号的界面功能.
须要制定编译器SDK版本号(compileSdkVersion)为Android L.
android { compileSdkVersion ‘android-L‘ buildToolsVersion ‘20.0.0‘ defaultConfig { minSdkVersion ‘L‘ targetSdkVersion ‘L‘ versionCode 1 versionName ‘1.0‘ } }
事实上最低须要, 仅仅改动compileSdkVersion为‘android-L‘就可以.
Android - 错误:"No resource found that matches the given name android:Theme.Material"
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。