2

如何将透明度值添加到调色板的色板?就像我将颜色(swatch.getRGB())添加到线性布局一样,它显示纯色。而且我不想使用 alpha,因为它也会使布局中的其他项目变得透明。

我的代码片段:

Palette palette = Palette.from(myBitmap).generate();
Palette.Swatch swatch1 = palette.getDarkVibrantSwatch();
int color = swatch1.getRgb();
thatLayout.setBackgroundColor(color)
4

3 回答 3

5

使用 android 支持实用程序类:

thatLayout.setBackgroundColor(ColorUtils.setAlphaComponent(swatch.getRgb(), alpha));
于 2016-09-12T10:22:30.913 回答
3

这就是我获得透明 RGB 整数值的方式

Bitmap myDisplayBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.ic_pic);
if (myDisplayBitmap != null && !myDisplayBitmap.isRecycled())
{
    Palette palette = Palette.from(myDisplayBitmap).generate();
    Palette.Swatch vibrantSwatch = palette.getDarkVibrantSwatch();

    /*If vibrantSwatch is null then return 0 otherwise :-) */
    int opaqueDarkVibrantColor = vibrantSwatch != null ? vibrantSwatch.getRgb() : 0;

     /*Call the method that returns alpha color */
    int transparentRGBInt = getColorWithAplha(opaqueDarkVibrantColor, 0.5f)
    yourLayout.setBackgroundColor(transparentRGBInt);

    // prints something like -2146428888
    Log.i("info", String.valueOf(transparentRGBInt)); 

}

这是返回 alpha 值的方法,您需要传递两个参数 int RGB 颜色值和透明度比率。

/**
     * @param color opaque RGB integer color for ex: -11517920
     * @param ratio ratio of transparency for ex: 0.5f
     * @return transparent RGB integer color
     */
    private int getColorWithAplha(int color, float ratio)
    {
        int transColor = 0;
        int alpha = Math.round(Color.alpha(color) * ratio);
        int r = Color.red(color);
        int g = Color.green(color);
        int b = Color.blue(color);
        transColor = Color.argb(alpha, r, g, b);
        return transColor ;
    }

编辑

使用它从 int RGB 值中获取 Hex 值

String opHexColor = String.format("#%06X", (0xFFFFFF & opaqueDarkVibrantColor));
于 2016-03-19T10:19:48.787 回答
0

我还没有测试过,但是这样的东西应该可以工作

private int setAlpha(int color, int alpha) {
  alpha = (alpha << 24) & 0xFF000000;
  return alpha | color;
}
于 2016-03-19T06:44:34.207 回答