轉載自:http://m.blog.csdn.net/article/details?id=7802403
問題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 windowcom.android.internal.policy.impl.PhoneWindow$DecorView@426f8510 that was originally added here
分析與解決:
重寫Activity的onDestroy方法,在方法中調用dismiss來解除對ProgressDialog等的引用。
可參考以下分析的原因: http://www.cnblogs.com/royenhome/archive/2011/05/20/2051879.html
問題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.
運行程序時出現此錯誤
可參考以下解決的方法: Try this Project->Clean in eclipse, and the deploy it again.
問題7. 在運行Java Web工程時,出現錯誤 java.lang.ClassNotFoundException: org.apache.commons.lang.exception.NestableRuntimeException
分析與解決: 出現這種問題是因為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. SDK更新后 運行程序報錯Location of the Android SDK has not been setup in the preferences
解決方法 : 請參見 http://my.eoe.cn/833563/archive/4239.html
問題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://mvnrepository.com/artifact/cz.msebera.android/httpclient/4.3.6