android.graphics.Color Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform.
The newest version!
package android.graphics;
public class Color
{
public Color() { throw new RuntimeException("Stub!"); }
public static int alpha(int color) { throw new RuntimeException("Stub!"); }
public static int red(int color) { throw new RuntimeException("Stub!"); }
public static int green(int color) { throw new RuntimeException("Stub!"); }
public static int blue(int color) { throw new RuntimeException("Stub!"); }
public static int rgb(int red, int green, int blue) { throw new RuntimeException("Stub!"); }
public static int argb(int alpha, int red, int green, int blue) { throw new RuntimeException("Stub!"); }
public static int parseColor(java.lang.String colorString) { throw new RuntimeException("Stub!"); }
public static void RGBToHSV(int red, int green, int blue, float[] hsv) { throw new RuntimeException("Stub!"); }
public static void colorToHSV(int color, float[] hsv) { throw new RuntimeException("Stub!"); }
public static int HSVToColor(float[] hsv) { throw new RuntimeException("Stub!"); }
public static int HSVToColor(int alpha, float[] hsv) { throw new RuntimeException("Stub!"); }
public static final int BLACK = -16777216;
public static final int DKGRAY = -12303292;
public static final int GRAY = -7829368;
public static final int LTGRAY = -3355444;
public static final int WHITE = -1;
public static final int RED = -65536;
public static final int GREEN = -16711936;
public static final int BLUE = -16776961;
public static final int YELLOW = -256;
public static final int CYAN = -16711681;
public static final int MAGENTA = -65281;
public static final int TRANSPARENT = 0;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy