I\'m making an app and I\'d like to be able to set various colors via user input(edittext) and hex values e.g. #eeeeee and so on. Problem is I cannot seem to figure out how to c
StringBuffer hexString = new StringBuffer(); hexString.append(Integer.toHexString(0xFF); System.out.print(hexString.toString());