1

我想设置值: 红色:0.910 绿色:0.969 蓝色:0.996 alpha:1.0
我得到的颜色为:

int color=Color.argb(1.0,0.910,0.969,0.996)

但这不起作用。

我想将十六进制颜色的值作为#FF00FF。有什么建议吗?

谢谢

4

1 回答 1

1

使用它来获取十六进制值

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;
    }

例如:int color = toHex(new Color(1f, 1f, 1f, 1f));

这是我提到的 将 RGBA 值转换为十六进制颜色代码的链接

相关链接:

如何在 Android 中将颜色整数转换为十六进制字符串?

于 2013-06-18T05:23:39.203 回答