本文介绍了Android:在画布API中使用渐变填充颜色绘制弧线的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用渐变填充使用画布绘制圆弧.如何做到这一点?

I want to draw an arc using canvas using a gradient fill. How can achieve this?

推荐答案

嘿,我从这里偷了这个东西:

Hey I stole this from here: Draw an arc with a SweepGradient in Android

但是效果很好,我改用LinearGradient.

but it works fine, I used a LinearGradient instead.

Shader gradient = new SweepGradient (0,getMeasuredHeight()/2, Color.RED, Color.WHITE);
lightRed.setShader(gradient);
canvas.drawArc(rectf, -90, 360, false, lightRed);

这篇关于Android:在画布API中使用渐变填充颜色绘制弧线的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-03 23:23