可以在android径向渐变可绘制中重新定位中心颜色吗?

时间:2012-10-25 23:32:09

标签: android drawable gradient android-xml

使用android的径向渐变中的标准开始,中心和结束颜色很容易在左边实现以下渐变,其中start = yellow,center = purple,end = blue。然而,右边的圆圈需要重新定位中心颜色。这可能吗?

enter image description here

左边的结果可以用以下内容复制:

    <shape android:shape="oval">
        <gradient
            android:endColor="#0000ff"
            android:gradientRadius="my_radius"
            android:centerColor="#770077"
            android:startColor="#00ffff"
            android:type="radial"/>
    </shape>

我想知道我是否可以移动中心颜色来实现右边的渐变。我相信答案是否定的,但我想看看是否有人发现了这样做的方法。谢谢!

1 个答案:

答案 0 :(得分:3)

可悲的是,这不能通过XML声明来实现,但是,可以通过代码来实现。

以下是一个快速代码示例:

public class MyDrawing extends View 
{   
    private Paint mPaint;

    public MyDrawing(Context context, AttributeSet attrs, int defStyle)
    {
        super(context, attrs, defStyle);
        init();
    }

    public MyDrawing(Context context, AttributeSet attrs)
    {
        super(context, attrs);
        init();
    }

    public MyDrawing(Context context)
    {
        super(context);
        init();
    }

    private void init()
    {
        int [] colors = new int[] { 0xff0000ff, 0xff00ff00, 0xffff0000 };
        float [] positions = new float[] { 0.4f, 0.7f, 0.9f };

        RadialGradient gradient = new RadialGradient(50, 50, 50, colors, positions, TileMode.CLAMP);                
        mPaint = new Paint();
        mPaint.setDither(true);
        mPaint.setShader(gradient);
    }

    @Override
    protected void onDraw(Canvas canvas) 
    {           
        super.onDraw(canvas);                               

        canvas.drawCircle(circleX, circleY, circleRadius, mPaint);      
    }
}

你应该注意两件事:

  1. 在colors数组中,您必须指定alpha(1st to chars)。在我的例子中,我将两者都指定为“ff”,这意味着没有透明度。如果未指定alpha,则默认为0.

  2. positions数组指定渐变中每种颜色的位置或强度。玩弄这个来达到你想要的结果。

  3. 希望这会有所帮助:)