Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.R;
import android.app.Activity;

public class Main {
    public static int findByValue(Activity activity, String value) {
        value = value.replaceAll("\\D", "_");
        value = "day_" + value;

        int id = activity.getResources().getIdentifier(value, "color", activity.getPackageName());

        int idColor = (id == 0) ? R.color.darker_gray : id;

        return activity.getResources().getColor(idColor);
    }
}