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 darker(final int color) {
        final int a = Color.alpha(color);
        int r = Color.red(color);
        int g = Color.green(color);
        int b = Color.blue(color);

        r -= 32;
        if (r < 0) {
            r = 0;
        }
        g -= 32;
        if (g < 0) {
            g = 0;
        }
        b -= 32;
        if (b < 0) {
            b = 0;
        }
        return Color.argb(a, r, g, b);
    }
}