Android Color 判斷色值小結

R-B發表於2021-09-09

   小菜我最近在處理主題色方面的問題,有個小需求是處理更改顏色,判斷色值等,稍稍整理了一下。
      Color 大家都很熟悉,其組成方式是 RGB 紅綠藍三原色,小菜覺得可以按 ARGB 即 Alpha 透明度、Red 紅色、Green 綠 和 Blue 藍色來記。預設的 Alpha 為 FF/255 完全不透明,可不設定;若 Alpha 為 00/0 時,代表完全透明,則紅綠藍不起作用;而介於 00-FF/0-255 之間時,可以顯示出顏色不同的層次效果。


小菜的測試步驟如下:

  1. 在 color.xml 中定義幾個測試顏色值;

<?xml version="1.0" encoding="utf-8"?><resources>
    <color name="test_color1">#3F51B5</color>
    <color name="test_color2">#3F51B5</color>
    <color name="test_color3">#FF4081</color>
    <color name="test_color4">#40FF4081</color></resources>
  1. 小菜想是否可以直接用 R.color.XX 方式判斷色值,測試不相同,小菜理解獲取的是 R 的值;

// 日誌輸出Log.e("color1==" + R.color.test_color1, "color2==" + R.color.test_color2);// 結果color1==2131427410: color2==2131427411
  1. 小菜測試用 getResources().getColor(R.color.XX) 方式,結果是對的;

// 日誌輸出Log.e("test_color1==" + getResources().getColor(R.color.test_color1), "test_color2==" + getResources().getColor(R.color.test_color2));// 結果test_color1==-12627531: test_color2==-12627531
  1. 繼續測試,獲取某個控制元件背景色;

// 日誌輸出if (mColorTv1.getBackground() instanceof ColorDrawable) {
    ColorDrawable colordDrawable = (ColorDrawable) mColorTv1.getBackground();    int color = colordDrawable.getColor();
     Log.e("color1==" + color, "test_color3==" + getResources().getColor(R.color.test_color3));
}// 結果color==-49023: test_color3==-49023
  1. 獲取方式都是可以的,只是這種方式看起來並不直接,轉成 16 進位制看起來會更自然;

String Color_16(int color) {
    StringBuffer stringBuffer = new StringBuffer();
    stringBuffer.append("#");
    stringBuffer.append(Integer.toHexString(Color.alpha(color)));
    stringBuffer.append(Integer.toHexString(Color.red(color)));
    stringBuffer.append(Integer.toHexString(Color.green(color)));
    stringBuffer.append(Integer.toHexString(Color.blue(color)));    return stringBuffer.toString();
}String Color_16_NoAlpha(int color) {
    StringBuffer stringBuffer = new StringBuffer();
    stringBuffer.append("#");
    stringBuffer.append(Integer.toHexString(Color.red(color)));
    stringBuffer.append(Integer.toHexString(Color.green(color)));
    stringBuffer.append(Integer.toHexString(Color.blue(color)));    return stringBuffer.toString();
}
// 日誌輸出if (mColorTv1.getBackground() instanceof ColorDrawable) {
    ColorDrawable colordDrawable = (ColorDrawable) mColorTv1.getBackground();    int color = colordDrawable.getColor();
     Log.e("color==" + Color_16(color), "test_color3==" + Color_16(getResources().getColor(R.color.test_color3)));
}// 結果color==#FF4081: test_color3==#FF4081

圖片描述

測試結果

以下是測試完整程式碼:

public class ColorActivity extends AppCompatActivity {

    Toolbar mToolbar;
    TextView mTitleTv, mColorTv1, mColorTv6;
    StringBuffer strBuffer = new StringBuffer();    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        this.requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.activity_color);

        mToolbar = (Toolbar) this.findViewById(R.id.toolbar);
        mTitleTv = (TextView) this.findViewById(R.id.tv_toolbar_title);
        mTitleTv.setText("Color 色值判斷");
        mColorTv1 = (TextView) this.findViewById(R.id.color_tv1);
        mColorTv6 = (TextView) this.findViewById(R.id.color_tv6);

        strBuffer.append("R.color.test_color1 方式  " + R.color.test_color1 + "n" + "R.color.test_color2 方式  " + R.color.test_color2 + "n");
        strBuffer.append("getResources().getColor(R.color.test_color1) 方式  " + getResources().getColor(R.color.test_color1) + "n" + "getResources().getColor(R.color.test_color2) 方式  " + getResources().getColor(R.color.test_color2) + "n" + "getResources().getColor(R.color.test_color3) 方式  " + getResources().getColor(R.color.test_color3) + "n");      
        if (mToolbar.getBackground() instanceof ColorDrawable) {
            ColorDrawable colordDrawable = (ColorDrawable) mToolbar.getBackground();            int color = colordDrawable.getColor();

            Log.e("=======color1==" + color, "=======color2==" + getResources().getColor(R.color.test_color3));
        }        if (mColorTv1.getBackground() instanceof ColorDrawable) {
            ColorDrawable colordDrawable = (ColorDrawable) mColorTv1.getBackground();            int color = colordDrawable.getColor();
            strBuffer.append("ColorTv  " + color + "n");
            strBuffer.append("ColorTv 十六進位制  " + Color_16(color) + "n");
            strBuffer.append("ColorTv 十六進位制(無透明度)  " + Color_16_NoAlpha(color) + "n");
            strBuffer.append("ColorTv 透明度 " + Color_Alpha(color) + " 紅 " + Color_Red(color) + " 綠 " + Color_Green(color) + " 藍 " + Color_Blue(color) + "n");
        }
        strBuffer.append("R.color.test_color3 十六進位制  " + Color_16(getResources().getColor(R.color.test_color3)) + "n");
        strBuffer.append("R.color.test_color3 十六進位制(無透明度)  " + Color_16_NoAlpha(getResources().getColor(R.color.test_color3)) + "n");
        strBuffer.append("R.color.test_color3 透明度 " + Color_Alpha(getResources().getColor(R.color.test_color3)) + " 紅 " + Color_Red(getResources().getColor(R.color.test_color3)) + " 綠 " + Color_Green(getResources().getColor(R.color.test_color3)) + " 藍 " + Color_Blue(getResources().getColor(R.color.test_color3)) + "n");
        strBuffer.append("R.color.test_color4 十六進位制  " + Color_16(getResources().getColor(R.color.test_color4)) + "n");
        strBuffer.append("R.color.test_color4 十六進位制(無透明度)  " + Color_16_NoAlpha(getResources().getColor(R.color.test_color4)) + "n");
        strBuffer.append("R.color.test_color4 透明度 " + Color_Alpha(getResources().getColor(R.color.test_color4)) + " 紅 " + Color_Red(getResources().getColor(R.color.test_color4)) + " 綠 " + Color_Green(getResources().getColor(R.color.test_color4)) + " 藍 " + Color_Blue(getResources().getColor(R.color.test_color4)) + "n");
        mColorTv6.setText(strBuffer.toString());

    }    String Color_16(int color) {
        StringBuffer stringBuffer = new StringBuffer();
        stringBuffer.append("#");
        stringBuffer.append(Integer.toHexString(Color.alpha(color)));
        stringBuffer.append(Integer.toHexString(Color.red(color)));
        stringBuffer.append(Integer.toHexString(Color.green(color)));
        stringBuffer.append(Integer.toHexString(Color.blue(color)));        return stringBuffer.toString();
    }    String Color_16_NoAlpha(int color) {
        StringBuffer stringBuffer = new StringBuffer();
        stringBuffer.append("#");
        stringBuffer.append(Integer.toHexString(Color.red(color)));
        stringBuffer.append(Integer.toHexString(Color.green(color)));
        stringBuffer.append(Integer.toHexString(Color.blue(color)));        return stringBuffer.toString();
    }    String Color_Alpha(int color) {
        StringBuffer stringBuffer = new StringBuffer();
        stringBuffer.append(Integer.toHexString(Color.alpha(color)));        return stringBuffer.toString();
    }    String Color_Red(int color) {
        StringBuffer stringBuffer = new StringBuffer();
        stringBuffer.append(Integer.toHexString(Color.red(color)));        return stringBuffer.toString();
    }    String Color_Green(int color) {
        StringBuffer stringBuffer = new StringBuffer();
        stringBuffer.append(Integer.toHexString(Color.green(color)));        return stringBuffer.toString();
    }    String Color_Blue(int color) {
        StringBuffer stringBuffer = new StringBuffer();
        stringBuffer.append(Integer.toHexString(Color.blue(color)));        return stringBuffer.toString();
    }    public static int Color_ChangeAlpha(int color, int alpha) {        int red = Color.red(color);        int green = Color.green(color);        int blue = Color.blue(color);        return Color.argb(alpha, red, green, blue);
    }
}

      Tips:獲取控制元件背景色時要注意 backdround 是 color 還是 drawable,可先判斷是否是 ColorDrawable。



作者:老菜和尚


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/4560/viewspace-2822299/,如需轉載,請註明出處,否則將追究法律責任。

相關文章