Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.graphics.Color;
import java.util.Random;

public class Main {
    public static Color getRandomColor() {
        Color color = new Color();
        color.rgb(getRandomNum(255), getRandomNum(255), getRandomNum(255));
        // setBackgroundColor(Color.rgb(getRandomNum(255),getRandomNum(255),getRandomNum(255)))
        return color;
    }

    private static int getRandomNum(int n) {
        new Color();
        return new Random().nextInt(n);
    }
}