我的应用程序中有一些滑块允许用户更改 ARGB 颜色,但是我需要将这些值转换为十六进制值,如 0xff000000,即纯黑色。
这是我到目前为止所拥有的:
protected int toHex(Color col) {
String as = pad(Integer.toHexString(col.getAlpha()));
String rs = pad(Integer.toHexString(col.getRed()));
String gs = pad(Integer.toHexString(col.getGreen()));
String bs = pad(Integer.toHexString(col.getBlue()));
String hex = "0x" + as + rs + gs + bs;
return Integer.parseInt(hex, 16);
}
private static final String pad(String s) {
return (s.length() == 1) ? "0" + s : s;
}
但是,在获得如下所示的整数值后,我得到了输入字符串的 NumberFormatException:“0xccffffff”:
int color = toHex(new Color(153f, 153f, 153f, 0.80f));
关于如何将其转换为整数的任何想法?谢谢。