Searched defs:Color (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DColor.java25 * The Color class defines methods for creating and converting color ints.
35 public class Color { class
/frameworks/base/awt/java/awt/
H A DColor.java37 * The Color class defines colors in the default sRGB color space or in the
38 * specified ColorSpace. Every Color contains alpha value. The alpha value
44 public class Color implements Paint, Serializable { class in inherits:Paint,Serializable
53 * which can be revealed using the following or similar code: Color c =
54 * Color.white; System.out.println(c);
60 public static final Color white = new Color(255, 255, 255);
65 public static final Color WHITE = white;
70 public static final Color lightGray = new Color(19
250 public Color(ColorSpace cspace, float[] components, float alpha) { method in class:Color
292 public Color(int rgba, boolean hasAlpha) { method in class:Color
313 public Color(int r, int g, int b, int a) { method in class:Color
332 public Color(int r, int g, int b) { method in class:Color
349 public Color(int rgb) { method in class:Color
366 public Color(float r, float g, float b, float a) { method in class:Color
387 public Color(float r, float g, float b) { method in class:Color
[all...]

Completed in 54 milliseconds