Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Draw circle with different border colors Android

Tags:

android

public static Bitmap drawCircle(int width,int height, int borderWidth) {
    Bitmap canvasBitmap = Bitmap.createBitmap( width, height, Bitmap.Config.ARGB_8888);
    BitmapShader shader = new BitmapShader(canvasBitmap, TileMode.CLAMP,      
            TileMode.CLAMP);
    Paint paint = new Paint();
    paint.setAntiAlias(true);
    paint.setShader(shader);
    paint.setShader(null);
    paint.setStyle(Paint.Style.STROKE);
    paint.setColor(Color.WHITE);
    paint.setStrokeWidth(borderWidth);  
    Canvas canvas = new Canvas(canvasBitmap);
    float radius = width > height ? ((float) height) / 2f : ((float) width) / 2f;
    canvas.drawCircle(width / 2, height / 2, radius - borderWidth / 2, paint);
    return canvasBitmap;
}

Simple this code draws a circle with white border, however I want part of the border to be black and the other part white. 40 % of it black, 60 % of it white

How can this be done?

like image 918
user3278732 Avatar asked Mar 06 '14 11:03

user3278732


2 Answers

Try this code

class MyView extends View
{
    private Paint paint;

    public MyView(Context context, int x, int y)
    {
        super(context);
        paint = new Paint();
        // PorterDuffXfermode xfermode = new PorterDuffXfermode(PorterDuff.Mode.CLEAR);

        paint.setStyle(Paint.Style.STROKE);
        paint.setColor(Color.RED);


        paint.setAlpha(255);
        // paint.setXfermode(xfermode);
        paint.setAntiAlias(true);
        // setBackgroundColor(Color.BLACK);
    }

    @Override
    protected void onDraw(Canvas canvas)
    {
        canvas.drawCircle(100, 100, 50, paint);
    }
}
like image 106
Hemantvc Avatar answered Nov 19 '22 15:11

Hemantvc


Here a utility method for filling a circle with one color and stroking the circle border with another color.

Use the second method to pass in an existing Paint instance, e.g. to set the anti-alias flag or to prevent memory allocations during onDraw().

public static void fillCircleStrokeBorder(
        Canvas c, float cx, float cy, float radius,
        int circleColor, float borderWidth, int borderColor) {
    fillCircleStrokeBorder(c, cx, cy, radius, circleColor, borderWidth, borderColor, new Paint());
}

public static void fillCircleStrokeBorder(
        Canvas c, float cx, float cy, float radius,
        int circleColor, float borderWidth, int borderColor, Paint p) {

    int saveColor = p.getColor();
    p.setColor(circleColor);
    Paint.Style saveStyle = p.getStyle();
    p.setStyle(Paint.Style.FILL);
    c.drawCircle(cx, cy, radius, p);
    if (borderWidth > 0) {
        p.setColor(borderColor);
        p.setStyle(Paint.Style.STROKE);
        float saveStrokeWidth = p.getStrokeWidth();
        p.setStrokeWidth(borderWidth);
        c.drawCircle(cx, cy, radius - (borderWidth / 2), p);
        p.setStrokeWidth(saveStrokeWidth);
    }
    p.setColor(saveColor);
    p.setStyle(saveStyle);
}
like image 5
Oliver Jonas Avatar answered Nov 19 '22 14:11

Oliver Jonas