Java tutorial
//package com.java2s; //License from project: Apache License import android.graphics.Color; public class Main { public static int setColorAlpha(int color, int alpha) { int red = Color.red(color); int green = Color.green(color); int blue = Color.blue(color); return Color.argb(alpha, red, green, blue); } }