将十六进制字符串转换为 rgba 整数颜色的最佳方法?

问题描述

从十六进制字符串中获取 rgba int 值的方法更可取?

long i = Long.parseLong(hex,16);
int r = (int) ((i>> 24) & 0xff);
int g = (int) ((i>> 16) & 0xff);
int b = (int) ((i>> 8) & 0xff);
int a = (int) (i& 0xff);

int r = Integer.valueOf(hex.substring(0,2),16);
int g = Integer.valueOf(hex.substring(2,4),16);
int b = Integer.valueOf(hex.substring(4,6),16);
int a = Integer.valueOf(hex.substring(6,8),16);

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)