Android examples for Graphics:Color Value
Convert the color value to hex
//package com.java2s; public class Main { /**// www.ja v a 2 s . com * Convert the color value to hex * @param color * @return hex string */ public static String colorToHex(int color) { return String.format("#%06X", (0xFFFFFF & color)); } }