android生成随机唯一的颜色代码

时间:2011-01-19 08:54:15

标签: android algorithm random

我想生成随机的,唯一的颜色代码。有算法吗?

1 个答案:

答案 0 :(得分:5)

Random color = new Random();

Color randomColor = new Color(color.nextInt(256),color.nextInt(256),color.nextInt(256));

迂腐地说,不确定是随机的;)