Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import android.graphics.Color;

public class Main {
    public static int withAlpha(int color, int alpha) {
        int r = Color.red(color);
        int b = Color.blue(color);
        int g = Color.green(color);
        return Color.argb(alpha, r, g, b);
    }
}