欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Eclipse最新版使用过程中遇到的问题总结

程序员文章站 2024-03-13 12:40:45
1、sdk下载很慢。 配置sdk代理,速度像飞一样。建议先把20-24下完,不然后面遇到很多问题。 2、support-v7的问题 例如res\values\st...

1、sdk下载很慢。

配置sdk代理,速度像飞一样。建议先把20-24下完,不然后面遇到很多问题。

Eclipse最新版使用过程中遇到的问题总结

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版本改得高一点

Eclipse最新版使用过程中遇到的问题总结

4、找不到图标

例如error: error: no resource found that matches the given name (at 'icon' with value '@drawable/ic_launcher').

因为自动生成的mainfest文件自带的图标是在drawable下的,但是仔细观察那个文件夹下没有图片资源,而是在mipmap下的

把图标路径改了即可。

Eclipse最新版使用过程中遇到的问题总结

5、应该在r里面生成的东西没有了

例如activity_main cannot be resolved or is not a field

Eclipse最新版使用过程中遇到的问题总结

删掉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最新版使用过程中遇到的问题总结

以上所述是小编给大家介绍的eclipse最新版使用过程中遇到的问题总结,希望对大家有所帮助