Progressbar 内加文字

这是一个自定义的MProgressView类,继承自ProgressBar。它在进度条内部显示文字,通过onDraw方法绘制文字,并在初始化时设置画笔颜色为灰色。提供了setText方法用于设置要显示的文本。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

package com.voole.ep.playertest;


import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Rect;
import android.util.AttributeSet;
import android.widget.ProgressBar;


public class MProgressView extends ProgressBar{

private String text ;
private Paint mPaint ;


public MProgressView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
// TODO Auto-generated constructor stub
init() ;
}


public MProgressView(Context context, AttributeSet attrs) {
super(context, attrs);
// TODO Auto-generated constructor stub
init() ;
}


public MProgressView(Context context) {
super(context);
// TODO Auto-generated constructor stub
init() ;
}

@Override
protected synchronized void onDraw(Canvas canvas) {
// TODO Auto-generated method stub
super.onDraw(canvas);
Rect rect = new Rect() ;
mPaint.getTextBounds(text, 0, text.length(), rect) ;
int x = getWidth()/2 - rect.centerX() ;
int y = getHeight()/2-rect.centerY() ;
canvas.drawText(text, x, y, mPaint) ;
}
  


private void init(){
 mPaint = new Paint() ;
 mPaint.setColor(Color.GRAY) ;
}

public  void setText(String text){
this.text = text ;
}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值