我需要创建弧形的进度条。我应该为此创建自定义视图吗?或者在ProgressBar类的onDraw()
方法的帮助下,我可以执行此操作吗?我也想在这个progressBar上添加标记像温度计。请建议我任何想法。感谢。
这样的事情:
protected synchronized void onDraw(Canvas canvas) {
int progress = this.getProgress();
int maxProgress = this.getMax();
//calc the progress to angles
float angleProgress = progress * 360 / maxProgress;
//create and set the arc paint
Paint arcPaint = new Paint();
arcPaint.setColor(0xff800000);
arcPaint.setAntiAlias(true);
arcPaint.setStyle(Style.FILL);
Rect arcRect = new Rect(); this.getDrawingRect(arcRect);
canvas.drawArc(new RectF(arcRect), -90, angleProgress,true, arcPaint);
}
对于参考,请检查此图像弧形进度条
答案 0 :(得分:1)
默认的ProgressBar小部件不容易定制,即使是比这更不那么雄心勃勃的更改。在我看来,除了作为最小值,最大值和当前值的载体之外,它在这种情况下不会为您提供任何有价值的行为。它还带来了不需要的功能,例如“不确定”状态。
通过扩展View并实现onDraw()来创建自定义视图 - 就像你一样 - 和onMeasure()。