本文主要是介绍Android 5.0 parseSdkContent failed Could not initialize class android.graphics.Typeface,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在进行android开发过程中,忽然发现经常弹出来parseSdkContent failed 这个错误,然后google了下解决办法
Note: it happens when you have 2 versions of SDK and eclipse, both in the same computer (and using the same .android file), if you open on version the other will get this error.
同一电脑存在两个版本的SDK
方法1:
删除.android文件 重启eclipse。
该方法对我来说还是管用的,确实没有弹出这些东西了。但是在启用SDK Manger或者虚拟机的时候,弹出了parseSdkContent failed Could not initialize class android.graphics.Typeface这个问题,解决google吧。
然后在stackoverflow找到了一个方法
1.Go to platforms folder -> android-21 folder -> data folder
2.rename layoutlib.jar (for backup purpose)
3.copy the same file (layoutlib.jar) from your android-20 folder to this folder
4.restart Eclipse
按照这个步骤走了下去,确实在启用SDK Manger或者虚拟机的时候没有再弹出来过错误提示信息了。
同时我把我的build-tools更新了下。
这篇关于Android 5.0 parseSdkContent failed Could not initialize class android.graphics.Typeface的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!