Android examples for Graphics:Color RGB Value
get Red value From Color
//package com.java2s; public class Main { public static int getRedFromColor(int color) { return (color >> 16) & 0xFF; }/*from ww w . j av a2 s . c om*/ }