Android examples for Graphics:Color Value
Parse Color Value
//package com.java2s; import android.graphics.Color; public class Main { public static int getColorValue(String rgb) { return Color.parseColor(rgb); }/*from w w w . j a v a2 s.c om*/ }