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

Android - 错误:"No resource found that matches the given name android:Theme.Material"

时间:2017-04-16 21:36:03      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:androi   version   end   build   name   sdn   config   source   nbsp   

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"

标签:androi   version   end   build   name   sdn   config   source   nbsp   

原文地址:http://www.cnblogs.com/cynchanpin/p/6719792.html

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