美文网首页
将透明度的百分比转化为十六进制的字符串

将透明度的百分比转化为十六进制的字符串

作者: 迷途之中小书童 | 来源:发表于2018-11-27 13:44 被阅读0次
public static String percent2HexStr(double percent) {
    try {
        double j = Math.round(percent * 100) / 100.0d;
        int alpha = (int) Math.round(j * 255);
        String hex = Integer.toHexString(alpha).toUpperCase();
        if (hex.length() == 1) {
            hex = "0" + hex;
        }

// Log.d("hex", "percent:" + percent + "|" + "hex:" + hex);
return hex;
} catch (Exception e) {
// do nothing
}
}

相关文章

网友评论

      本文标题:将透明度的百分比转化为十六进制的字符串

      本文链接:https://www.haomeiwen.com/subject/gcsgqqtx.html