zoukankan      html  css  js  c++  java
  • 新版Eclipse使用遇到的问题总结

    1、SDK下载很慢。

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

    2、support-v7的问题

    例如resvaluesstyles.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 esvalues-v21styles_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版本调低点即可

    大概就那么多,希望可以帮到大家

  • 相关阅读:
    bnuoj 4207 台风(模拟题)
    bnuoj 4208 Bubble sort
    bnuoj 4209 Triangle(计算几何)
    bnuoj 33656 J. C.S.I.: P15(图形搜索题)
    bnuoj 33648 Neurotic Network(树形模拟题)
    bnuoj 33647 Angry Grammar Nazi(字符串)
    bnuoj 16493 Just Pour the Water(矩阵快速幂)
    Solidity合约记录——(三)如何在合约中对操作进行权限控制
    预赛第二场
    预赛第一场
  • 原文地址:https://www.cnblogs.com/wzben/p/5922454.html
Copyright © 2011-2022 走看看