Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import android.graphics.Color;
import java.util.Random;

public class Main {
    public static int generateRandomColor() {
        Random rnd = new Random();
        int r = rnd.nextInt(256);
        int g = rnd.nextInt(256);
        int b = rnd.nextInt(256);

        if ((r == 0 && g == 0 && b == 0) || (r == 255 && g == 255 && b == 255)) {
            return generateRandomColor();
        }

        int color = Color.argb(30, r, g, b);

        return color;
    }
}