SystemProperties cannot be resolved错误

单独用eclipse打开一个工程,出现SystemProperties.get()会出现SystemProperties cannot be resolved.错误

1. 引用SystemProperties.get()会出现SystemProperties cannot be resolved.

解决方法:

在当前工程属性(Properties) -> Java Build Path -> Libraries

点击Add External JARs...按钮, 选择layoutlib.jar文件,然后在项目源文件中增加import android.os.SystemProperties;

layoutlib.jar文件位于: android sdk/platforms/android-*.*/data目录下.

layoutlib.jar项目是从外部导入Eclipse中的,只要一编译,就会报错:Conversion to Dalvik format failed: Unable to execute dex: null , 同时Eclipse也变的很卡,好几次都挂掉了.

解决

1:设置内存

eclipse.exe的快捷方式——右键/属性 在 目标 里填写如下内容
"D:/eclipse/eclipse.exe" -vmargs -Xms128M -Xmx512M -XX:PermSize=64M -XX:MaxPermSize=128M

双引号内 为eclipse的安装路径。

如果1不行:

应该采用用户库的形式导入该库,具体步骤如下:

1. Right-click the project in Eclipse and select "Build Path -> Add Libraries...".
2. Select User Library from the list and click Next.
3. Click the "User Libraries..." button.
4. Click "New..." in the User Libraries dialog.
5. Give the user library a name and select the System library checkbox and click OK.
6. Highlight the newly added user library in the list and click the "Add JARs..." button and add the desired jar files.
7. Click OK on the User Libraries dialog.
8. Make sure the new user library is checked in the Add Library dialog and

用到我自己的项目上去。编译OK。

如果还是有红色叉叉,则选择java build path  --》order
and export把自己导入的包放到android的包前面即可

时间: 2024-10-05 11:27:02

SystemProperties cannot be resolved错误的相关文章

恼人的The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved...错误,无奈用Struts的bean:write替代了JSTL的C:out

一个应用中有两个页面使用了JSTL的c:out输出,就类似这么简单三句 <c:if test="${!empty error}">       <h2><c:out value="${error}"/></h2> </c:if> 应用在本地MyEclipse中的Tomcat6跑得正常,但放到CentOS的Tomcat7上出现了错误 The absolute uri: http://java.sun.com/

【Java】导入项目时,出现The project cannot be built until build path errors are resolved错误解决方法

先检查jar包,jar包的地址如果不一样需要remove后重新导入的,右键项目→Build Path. 看额外的jar包有没有×,地址正不正确,要是不正确,remove错误jar包,再点击Add Extenal JARs 最后检查JDK的版本,当然是选自己电脑下载的版本了,点击环境的下拉菜单. 要是还有错误的话,我也没辙了,去看看别的教程吧. 原文地址:https://www.cnblogs.com/ByTwo/p/11760735.html

【SVN】团队项目出现The project cannot be built until build path errors are resolved的解决方法与.classpath文件

一般从SVN检出的项目,按<[SVN]新SVN项目的注意事项>(点击打开链接)改好一切,并且按照<[Mysql]修改root密码与创造一个与root一样权限的账号>(点击打开链接)配置好数据库密码,就基本没有问题的,但是请注意.有时候,你弄得再怎么好,你会发现你的SVN工程,尽管能够正常编译与运行,但是里面所有jar包消失,工程目录结构凌乱,然后写Java代码的时候没有半点提示,在MyEclipse/Eclipse的Problem一栏出现The project cannot be

Android 错误集锦(ing...)

系统环境: Windows7 64位 问题描述: Eclipse真机无法打印log信息 错误提示: 解决方案: window-->show view-->android->devices, 打开devices,点击右边的截屏图片的按钮.等到出现截图的时候,logcat就出来信息了(不保证每次都有用) 系统环境: Windows7 64位 问题描述: xml(资源)文件里面的错误 错误提示: android: invalid start tag xxxxx 错误原因 解决方案: 今天在学s

NIOS II ecliplse中出现Symbol &#39;XX_BASE&#39; COULD NOT BE RESOLVED解决

NIOS II ecliplse中出现Symbol 'XX_BASE' COULD NOT BE RESOLVED解决 在nios II中,明明system.h中定义了#define xxx_base 0x00000010,可是在编写程序时,调用IORD(xxx_base)或IOWR(xxx_base)时,总是提示Type 'xxxx_base' could not be resolved错误,重新编译不行,重新生成BSP也不行. 在nios II开发中,加入了一个PIO以后,也重新genera

解决javax.servlet.jsp.JspException cannot be resolved to a type

java开发工具 在导入新项目后出现 javax.servlet.jsp.JspException cannot be resolved to a type错误信息: 解决方案: 看看项目中是否存在jsp.api.jar包.若是不存在就去tomcat中copy一份  jsp.api.jar包到项目lib中 The import javax.servlet.http.HttpServletRequest cannot be resolved 错误信息 解决方案: 看看项目中是否存在servlet.

the remote name could not be resolved: &#39;api.weixin.qq.com&#39;

处理微信公众号时发现的错误,困扰了好几天,终于发现时DNS配置的问题 若无法使用可以使用ping命令查看是否网络原因无法访问地址 从网上查看的其他处理方式: 网站如果绑定了代理ip,内部跳转的时候,就会报The remote name could not be resolved错误,这个错误很难排查,网上也没有多少可参考的例子 现在记录下解决方法,以备参考: 方法就是在webconfig文件里面添加代理配置: <system.net> <defaultProxy> <prox

java导入工程出现问题

1.提示The import java.util cannot be resolved: 项目buildpath不对与原来的项目,jdk不同.换了之后原来的没了就导致了现在这种错误,基本的java.lang或 者util包都找不到.解决方案:右键项目----buildpath---Configure Build Path选择libraries,添加一个jre:选中项目----project----clean 2.The import android cannot be resolved错误怎么办

Node.js 网页瘸腿爬虫初体验

延续上一篇,想把自己博客的文档标题利用Node.js的request全提取出来,于是有了下面的初哥爬虫,水平有限,这只爬虫目前还有点瘸腿,请看官你指正了. // 内置http模块,提供了http服务器和客户端功能 var http=require("http"); // 内置文件处理模块 var fs=require('fs'); // 创建一个将流数据写入文件的WriteStream对象 var outstream=fs.createWriteStream('./1.txt'); /