从GitHub上下载的代码家的NumberProgressBar,导入adt之后报错如下:
error: Error retrieving parent for item: No resource found that matches the given name 'Theme.AppCompat.Light.DarkActionBar'.
xml文件内容如下:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
</resources>
这个问题该如何解决?
高洛峰2017-04-17 12:03:28
android-support-v7-appcompat
没有找到这个依赖,最好先把他原来的v7删掉,然后重新导入你自己的v7包做依赖,一句话就是确保你的工程引用的v7 library路径正确,方法:右键你引入的工程->property->(左侧)Android
我猜你的左边框中包应该是红色的,选中remove掉然后重新Add键导入你的v7包;
你也可以试试在导入他的工程时勾选 copy into workpace
选项
伊谢尔伦2017-04-17 12:03:28
如果你用android studio的话。
直接gradle里面这样即搞定。
dependencies {
compile 'com.daimajia.numberprogressbar:library:1.2@aar'
}
不用搞啥配置了。