Home | History | Annotate | Download | only in shadows

Lines Matching defs:colorValue

401         String colorValue = attributeSet.getAttributeValue("android", "textColor");
402 if (colorValue != null) {
403 if (colorValue.startsWith("@color/") || colorValue.startsWith("@android:color/")) {
406 } else if (colorValue.startsWith("#")) {
407 int colorFromHex = (int) Long.valueOf(colorValue.replaceAll("#", ""), 16).longValue();
426 String colorValue = attributeSet.getAttributeValue("android", "hintColor");
427 if (colorValue != null) {
428 if (colorValue.startsWith("@color/") || colorValue.startsWith("@android:color/")) {
431 } else if (colorValue.startsWith("#")) {
432 int colorFromHex = (int) Long.valueOf(colorValue.replaceAll("#", ""), 16).longValue();