Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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;
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
297 views
Welcome To Ask or Share your Answers For Others

1 Answer

Someone here posted a problem with this on a different site. His solution was:

Got it. Found no applied style which causes my problem but found a workaround for this... Directly after applying the style via setTheme(R.style.Theme_Sherlock); i'm using the following code to set the background color.

   View v = act.getWindow().getDecorView();

   if (v != null){
       v.setBackgroundColor(R.color.abs__background_holo_dark);
   }

Now everything is working like expected.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...