当我在eclipse中导入我的Android项目时,出现以下错误。
描述资源路径位置类型 错误:检索项目的父项时出错:找不到与给定名称匹配的资源' android:Theme.Holo.Light'。 styles.xml / INU_app_new / res / values-v11第7行Android AAPT问题
这是错误源代码。
style.xml
<!--
Base application theme for API 11+. This theme completely replaces
AppBaseTheme from res/values/styles.xml on API 11+ devices.
-->
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
//That is the error line.
<!-- API 11 theme customizations can go here. -->
</style>
有什么建议吗?
答案 0 :(得分:0)
似乎是你复制了一个现有的问题,但却没有结识。
您可以在此处找到解决问题的方法:
No resource found that matches the given name 'android:Theme.Holo.Light'
No resource found that matches the given name 'android:Theme.Holo.Light.DarkActionBar'
如果你在Eclipse中使用Gradle,你也可以尝试像这样设置build.gradle
中的值(针对API 21更新):
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
minSdkVersion 21 //Depends on the min version you would like to support
targetSdkVersion 21
versionCode 1
versionName "1.0"
}