Android examples for Graphics:Color Value
mix two color values
//package com.java2s; import android.graphics.Color; public class Main { public static int mix(int color1, int color2) { int r1 = Color.red(color1); int g1 = Color.green(color1); int b1 = Color.blue(color1); int r2 = Color.red(color2); int g2 = Color.green(color2); int b2 = Color.blue(color2); int r3 = (int) ((r1 + r2) * 0.5); int g3 = (int) ((g1 + g2) * 0.5); int b3 = (int) ((b1 + b2) * 0.5); return Color.rgb(r3, g3, b3); }/*from w ww . j av a 2 s . c o m*/ }