本文介绍了Android的 - 为的OnDraw()查看样品需要帮助的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我用低于code画出一条视图
i've used below code for draw a view
@Override
protected synchronized void onDraw(Canvas canvas) {
super.onDraw(canvas);
paint.setStyle(Style.STROKE);
paint.setAntiAlias(true);
RectF rectF = new RectF(0,0,30,30);
RectF rectF1 = new RectF(200,0,230,30);
canvas.drawArc(rectF, 270, 180, false, paint);
canvas.drawArc(rectF1, 90, 180, false, paint);
canvas.drawLine(15, 0, 215, 0, paint);
canvas.drawLine(15, 30, 215,30, paint);
}
输出是像下面
但我想填充视图里面的颜色。
but i want fill the color inside the view.
如何实现这一目标?
推荐答案
使用路径,而不是调用四倍的drawLine / drawArc
use Path instead of calling four times drawLine/drawArc
这篇关于Android的 - 为的OnDraw()查看样品需要帮助的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!