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[] hexToRGB(String hex) {
        int color = Color.parseColor(hex);
        return colorToRGB(color);
    }

    public static int[] colorToRGB(int color) {
        int red = Color.red(color);
        int green = Color.green(color);
        int blue = Color.blue(color);
        return new int[] { red, green, blue };
    }
}