在进行android开发过程中,忽然发现经常弹出来parseSdkContent failed 这个错误,然后google了下解决办法 方法1: 删除.android文件 重启eclipse. 该方法对我来说还是管用的,确实没有弹出这些东西了.但是在启用SDK Manger或者虚拟机的时候,弹出了parseSdkContent failed Could not initialize class android.graphics.Typeface这个问题,解决google吧. 然后在stackov…
Deleting ".android" is temporarily fixing the problem with me as after sometime it begins to come again .. Here is another cause and fix that might help .. This is happening because of existence of 2 versions of SDK in the same machine but in ca…
昨天做了一个Android的小程序,调试的时候连接真实的手机,而不是用模拟器.今天早上打开eclipse的时候报错:“Android SDK Content loader has encountered a problem” “parseSdkContent Failed ”.原先设置的模拟器也不见了.我想了想原因,不清楚为什么,但是感觉跟我昨天连接手机有关系,一些原来的模拟设置变了. 后来在网上查了下,处理如下: 1.将C:\Documents and Settings\Administrat…
在测试获取数据库中的数据或者在页面获取时,有时会遇到这样的错误提示: failed to lazily initialize a collection of role: com.exam.entity.Question.questionAnswer, no session or session was closed 其中com.exam.entity.Question.questionAnswer为错误的相关类名,根据实际情况而定. 从错误的字面意思可以发现是延迟加载初始化时遇到了问题. 从错误…
int android.graphics.Bitmap.getRowBytes() Return the number of bytes between rows in the bitmap's pixels. Note that this refers to the pixels as stored natively by the bitmap. If you call getPixels() or setPixels(), then the pixels are uniformly trea…
可能修复了一个重大的偶尔发生的几乎难以察觉的并且到现在我也没能理解的bug...有时(经常)调用updateNotNullfield方法(原理是从数据库中get一个对象,然后把原对象中非空的值赋予它,再更新.其中为了判断set是否为空使用了size()方法,是此方法引发了懒加载.)更新get.query.criteria等方法取出的对象会出现"failed to lazily initialize a collection of role" 异常,可能是session缓存引起的,但是没…