To be honest, these past two emails have been fairly incomprehensible to me, and I don't mean the log output. At this point, I have no idea what is and is not working for you, other than an indication that perhaps your ADD problem persists.
On Mon, Apr 30, 2012 at 11:33 AM, Jim Graham <[email protected]> wrote: > W/dalvikvm(24675): VFY: unable to resolve static field 3 (ADD) > in Landroid/graphics/PorterDuff$Mode; It is interesting that it reports this as being 3 -- the current source code shows it as 16. https://github.com/android/platform_frameworks_base/blob/master/graphics/java/android/graphics/PorterDuff.java I suppose the "3" could mean something else (third entry in some compiler lookup table?). On a whim, try PorterDuff.Mode.valueOf("ADD") and see what happens when you look up the enum value by name. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Training...At Your Office: http://commonsware.com/training -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

