新版Eclipse使用遇到的问题总结
Posted wzb的QQ空间
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了新版Eclipse使用遇到的问题总结相关的知识,希望对你有一定的参考价值。
1、SDK下载很慢。
配置SDK代理,速度像飞一样。建议先把20-24下完,不然后面遇到很多问题。
2、support-v7的问题
例如res\\values\\styles.xml:4: error: Error retrieving parent for item: No resource found that matches the given name \'Theme.AppCompat.Light.DarkActionBar\'.
下载相关的工具包,其实一开始SDK没有额,很多博客说有,害我找了半天。
右键你的项目,在下方有个android Tools,点击Add Support Lib。。。,然后按提示下载。
其余的就是像别的博客说得导入v7工程还有jar包
3、v21相关问题
例如
appcompat\\res\\values-v21\\styles_base.xml:75: error: Error retrieving parent for item: No resource found that matches the given name \'android:Widget.Material.ActionButton\'.
要在v7项目里面改,在v7项目下的project.properties的target版本改得高一点
4、找不到图标
例如error: Error: No resource found that matches the given name (at \'icon\' with value \'@drawable/ic_launcher\').
因为自动生成的mainfest文件自带的图标是在drawable下的,但是仔细观察那个文件夹下没有图片资源,而是在mipmap下的
把图标路径改了即可。
5、应该在R里面生成的东西没有了
例如activity_main cannot be resolved or is not a field
删掉import android.R;
6、无法预览布局
例如:This version of the rendering library is more recent than your version of ADT plug-in. Please update ADT plug-in
ADT版本低,SDK版本高,把SDK版本调低点即可
大概就那么多,希望可以帮到大家
以上是关于新版Eclipse使用遇到的问题总结的主要内容,如果未能解决你的问题,请参考以下文章