Java tutorial
//package com.java2s; //License from project: Apache License import android.content.Context; public class Main { static int[] colors = { android.R.color.holo_orange_light, android.R.color.holo_blue_bright, android.R.color.holo_green_light, android.R.color.holo_purple, android.R.color.holo_red_light, android.R.color.holo_green_dark, android.R.color.holo_orange_dark, android.R.color.holo_blue_dark, android.R.color.holo_red_dark, android.R.color.holo_blue_dark, android.R.color.holo_green_dark, }; public static int colorForKeycode(Context c, int keycode) { return c.getResources().getColor(colors[keycode % colors.length]); } }