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 getColor(int color) {

        int r = color >> 16;
        color -= (r & 0xFF) << 16;
        int g = color >> 8;
        color -= (g & 0xFF) << 8;
        int b = color;

        return Color.rgb(r, g, b);

    }
}