Like the title says I have this code
needleColor = Integer.parseInt(mPrefs.getString("color_key", "-1"));
that throws NumberFormatException
stating “0xFFFFFFFF is not a valid integer”. This code worked fine up until eclipse crashed and I wound up completely removing eclipse and re-downloading the adk.
Looking at the documentation http://developer.android.com/reference/android/graphics/Color.html the colors are represented as ints and the value is -1. So it’s a valid int…
Answer
Integer.parseInt
doesn’t process the 0x
prefix — it expects you to pass in the bare digits, and the radix. Integer.decode
would probably do what you want, though.