Tag: android progressbar

获取Android ProgressBar中secondaryProgress的宽度

我有一个带有文本的进度条,我在其中覆盖了onDraw,如下所示: @Override protected synchronized void onDraw(Canvas canvas) { super.onDraw(canvas); Paint textPaint = new Paint(); textPaint.setAntiAlias(true); textPaint.setColor(textColor); textPaint.setTextSize(textSize); Rect bounds = new Rect(); textPaint.getTextBounds(text, 0, text.length(), bounds); float fx = getX(); float fy = getY(); int x = getWidth() / 2 – bounds.centerX(); int y = getHeight() / 2 – bounds.centerY(); canvas.drawText(text, x, y, textPaint); } […]