Java tutorial
//package com.java2s; /* Part of this class uses code from DurationFormatter (see license details below).*/ import android.graphics.Color; public class Main { public static int getDurationColor(long duration) { if (duration < 3 * 3600 * 1000) { return Color.RED; } if (duration < 12 * 3600 * 1000) { return Color.YELLOW; } if (duration < 24 * 3600 * 1000) { return Color.GREEN; } return Color.WHITE; } }