Android examples for Graphics:Color Value
create Pixel from color value
//package com.java2s; public class Main { public static int createPixel(int red, int green, int blue, int alpha) { return (0xFF << 24) | (red << 16) | (green << 8) | blue; }// w w w . j a va2s .c o m }