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 {
    /**
     * Get color from float between 0 and 1
     * @param fraction float between 0 and 1
     * @return color from fraction
     */
    public static int getColorFromFraction(float fraction) {
        return Color.HSVToColor(new float[] { fraction * 360, 1, 1 });
    }
}