Android examples for Graphics:Pixel
create Gray Pixel
//package com.java2s; public class Main { public static final int createGrayPixel(int color) { return (0xFF << 24) | (color << 16) | (color << 8) | color; }// w ww .j a va 2s . c o m }