We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
you could correct that using : "#"+String.format("%08X", color) instead of : "#"+Integer.toHexString(color)
The text was updated successfully, but these errors were encountered:
I change it but i still get the error. But now it came from dissmis (it's from Color.Picker.Dialog.class) http://i.imgur.com/7832OhU.png
Sorry, something went wrong.
+1 to this
If you select the bottom-most part of the color viewer and go to full transparency, the color is #0 and it crashes.
#0
Fixing Alpha color like return less hex decimal number. //hexVal is hex color that returns by library
int length=hexVal.length(); String withoutHash=hexVal.substring(1,length); while (withoutHash.length()<=7) { withoutHash="0"+withoutHash; } hexVal ="#"+withoutHash;
//use hexVal to set the color.
No branches or pull requests
you could correct that using :
"#"+String.format("%08X", color)
instead of :
"#"+Integer.toHexString(color)
The text was updated successfully, but these errors were encountered: