在路径上绘制渐变

时间:2017-12-18 15:17:15

标签: android linear-gradients

我正在使用library作为循环搜索栏。

我想要实现的是附在图像中。 enter image description here

我试图 - 1.使用LinearGradient绘制颜色。颜色分布不正确。

// The positions are from the circle rect and hardcoded for this sample.
protected int[] mGradientColors = {
                0xFFF15155, // red
                0xFFFBB846,// yellow
                0xFF19B6F1, // blue
        };
protected LinearGradient mLineargradient = new LinearGradient(-320.5F
                    , -320.25F
                    , 320.5F
                    , 320.25F
                    , mGradientColors, null, Shader.TileMode.CLAMP);
  1. 我还有一个单独的渐变图像(PNG)。 尝试使用Palette API从图像中提取颜色,但是我从Swatch对象中获得了单独的颜色。不知道如何将它们转换为渐变。

0 个答案:

没有答案