博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
android 出错集
阅读量:6938 次
发布时间:2019-06-27

本文共 1964 字,大约阅读时间需要 6 分钟。

问题1.    java.lang.RuntimeException: Failed to register input channel. Check logs for details.

解决     这个问题应是程序加载(Launcher Pro)  时爆出的,LP是一个主页替代工具,它在程序加载时,当没有释放一些应当释放的资源就会出现

   理解起来确有深奥之处,此问题没有真正解决,权当先记下会出现这种情况,备忘

问题2.   An internal error occurred during: "Launching New_configuration".

              Path for project must have only one segment.

解决:     在Eclipse中按照如下操作

              Project -> Properties -> Run/Debug Settings:
             1. select "Launching New_configuration"
             2. Delete
             3. OK
问题3.   java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent first.

 分析mInflater.inflate(R.layout.eg_refresh_message, this, false);

 

问题4.  AndroidRuntime(1925): java.util.MissingFormatArgumentException: Format specifier: 40s

分析与解决:出现问题的地方 可能为 String m = String.format(msg, args);

在msg 中出现了%s 通配符,但在args 没有对应的值来匹配,就会报错,因此要检查msg 的内容,看是否出现% 类似的通配符

问题5.  Activity com.xxx.XxxActivity has leaked window that was originally added here

分析与解决:

重写Activity的onDestroy方法,在方法中调用dismiss来解除对ProgressDialog等的引用。

可参考以下分析的原因:   

问题6. Installation error: INSTALL_FAILED_UID_CHANGED

[2014-08-31 10:18:00 - ***********] Please check logcat output for more details.
[2014-08-31 10:18:00 - ***********] Launch failed on device: 10.1.53.49:5555

.........

New package not yet registered with the system. Waiting 3 seconds before next attempt.

运行程序时出现此错误

可参考以下解决的方法:   

问题7.   在运行Java Web工程时,出现错误 

分析与解决:   出现这种问题是因为jar包不全,应该包含

commons-beanutils-1.8.3.jar 
commons-lang-2.5.jar 
ezmorph-1.0.6.jar 
json-lib-2.3-jdk15.jar

commons-logging-1.1.1.jar

commons-collections 3.2

问题8.  

解决方法 :   请参见  

问题9.  2016-01-06  16:17:36.296: E/AndroidRuntime(10198): java.lang.IllegalStateException: Could not create an EGL context. eglCreateContext failed with error: EGL_SUCCESS

解决方法:   出现这个错误, 需要重启模拟器 或者设备

问题10: 在使用 android-async-http-1.4.9.jar 包时,

报错: The type cz.msebera.android.httpclient.HttpResponse cannot be resolved. It is indirectly referenced from required .class files

解决方法:下载httpclient-4.3.6.jar包, 导进去即可.

在以下地址下载:

转载地址:http://siqjl.baihongyu.com/

你可能感兴趣的文章
IDE_Index
查看>>
简历投递的注意事项及技巧
查看>>
Linux-3.查看计算机名以及修改(hostname 命名规范)
查看>>
espresso学习
查看>>
windows读取linux分区
查看>>
spring boot 运行时内存分配
查看>>
ISA2006实战系列之二:实战ISA三种客户端部署方案(下)
查看>>
国电OA移动办公系统
查看>>
debian wheezy 编译 php5-memcached
查看>>
Android编译可执行程序
查看>>
MySQL创建/删除用户与授权
查看>>
Linux文字接口下的刻录
查看>>
Java SE Development Kit 5/6/7下载地址
查看>>
如何让joomla的不同页面使用不同的背景图片
查看>>
工作总结-MySQL相关
查看>>
我的友情链接
查看>>
监控错误日志关键字
查看>>
我的友情链接
查看>>
常用的shopNC部分大写字母函数
查看>>
PostgreSQL 8.1 中文文档
查看>>