Android Color Parse parseColor(String colorName)

Here you can find the source of parseColor(String colorName)

Description

parse Color

License

Apache License

Declaration

private static int parseColor(String colorName) 

Method Source Code

//package com.java2s;
/*//  w ww .j  a  v  a2  s. c o  m
 * Copyright (C) 2014 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import android.graphics.Color;

public class Main {
    private static int parseColor(String colorName) {
        return Color.parseColor(colorName.toLowerCase());
    }
}

Related

  1. parseColor(String inColor)
  2. parseHexColor(String colorStr)
  3. toARGB(String colorString)
  4. toARGB(int alpha, int red, int green, int blue)