Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.graphics.Color;

public class Main {
    public static int amendColorAlpha(int color, int alpha) {
        return Color.argb(alpha, (color >> 16) & 0xff, (color >> 8) & 0xff, color & 0xff);
    }
}