List of usage examples for android.graphics Color Color
public Color()
From source file:Main.java
public static Color getRandomColor() { Color color = new Color(); color.rgb(getRandomNum(255), getRandomNum(255), getRandomNum(255)); // setBackgroundColor(Color.rgb(getRandomNum(255),getRandomNum(255),getRandomNum(255))) return color; }
From source file:Main.java
private static int getRandomNum(int n) { new Color(); return new Random().nextInt(n); }
From source file:edu.purdue.vieck.htmlcolorwheel.SliderFragment.java
@Override public void onAttach(Activity activity) { super.onAttach(activity); color = new Color(); }