Skip to content

Instantly share code, notes, and snippets.

@vinaysshenoy
Created August 26, 2015 17:56
Show Gist options
  • Save vinaysshenoy/aa6521b27d01a31f1f26 to your computer and use it in GitHub Desktop.
Save vinaysshenoy/aa6521b27d01a31f1f26 to your computer and use it in GitHub Desktop.
Android Color to hexString
String hexColor = String.format("#%06X", (0xFFFFFF & intColor)); //Without alpha
String hexColor = String.format("#%08X", (0xFFFFFFFF & intColor)); //With alpha(Not tested)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment