public class Gradient
extends java.lang.Object
构造器和说明 |
---|
Gradient(int[] colors,
float[] startPoints)
构造函数,color 和 statPoints 不能为null,长度不能为0,两数组长度须一致,startPoints 数据必须递增。
|
public Gradient(int[] colors, float[] startPoints)
colors
- 渐变色用到的所有颜色数组 [0x000000, 0xFFFFFF], e.g.:{Color.rgb(102, 225,
0), Color.rgb(255, 0, 0) }, 按声明的顺序由冷到热startPoints
- 每一个颜色的起始点数组, [0.0f, 1.0f], e.g.:{ 0.2f, 1f },与 colors 数组一一对应