本文介绍了找不到方法android.content.pm.ApplicationInfo.loadLogo的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
为什么不能dalvikvm find方法android.content.pm.ApplicationInfo.loadLogo?
08-15 15:19:45.112:D / dalvikvm(319):VFY:在0x008b更换运code 0x6e
08-15 15:19:45.112:I / dalvikvm(319):找不到方法android.content.pm.ApplicationInfo.loadLogo,
从方法android.support.v7.internal.widget.ActionBarView&LT引用; INIT>
08-15 15:19:45.112:W / dalvikvm(319):VFY:无法解析虚方法417:Landroid /内容/ PM / ApplicationInfo;
.loadLogo(Landroid /内容/ PM /软件包管理系统;)Landroid /图形/绘制/可绘制;
解决方案
loadLogo()
是一个新的API级别9 。如果您在下面的API级别8或运行此,你会得到这样的警告。
Why can't the dalvikvm find method android.content.pm.ApplicationInfo.loadLogo ?
08-15 15:19:45.112: D/dalvikvm(319): VFY: replacing opcode 0x6e at 0x008b
08-15 15:19:45.112: I/dalvikvm(319): Could not find method android.content.pm.ApplicationInfo.loadLogo,
referenced from method android.support.v7.internal.widget.ActionBarView.<init>
08-15 15:19:45.112: W/dalvikvm(319): VFY: unable to resolve virtual method 417:Landroid/content/pm/ApplicationInfo;
.loadLogo (Landroid/content/pm/PackageManager;)Landroid/graphics/drawable/Drawable;
解决方案
loadLogo()
is new to API Level 9. If you are running this on API Level 8 or below, you will get this warning.
这篇关于找不到方法android.content.pm.ApplicationInfo.loadLogo的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!