Android progressbar 는 아래쪽 표시 기와 텍스트 의 진행 바 를 실현 합 니 다.

본 논문 의 사례 는 안 드 로 이 드 가 표시 기와 문자 의 진 도 를 공유 하여 여러분 께 참고 하 실 수 있 습 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
프로젝트 요구 에 따라 다음 과 같은 효 과 를 실현 해 야 한다.

원본 목록:

public class TextProgressBar extends LinearLayout {
 
 String text;
 Paint mPaint;
 private Rect textRect;
 private Bitmap bitmap;
 private ProgressBar progressBar;
 int progress;
 int proWidth, proHeight;
 
 public TextProgressBar(Context context, AttributeSet attrs, int defStyleAttr) {
  super(context, attrs, defStyleAttr);
  initText(context);
 }
 
 public TextProgressBar(Context context) {
  super(context);
  initText(context);
 }
 
 public TextProgressBar(Context context, AttributeSet attrs) {
  super(context, attrs);
  initText(context);
 }
 
 @Override
 protected synchronized void onDraw(Canvas canvas) {
  super.onDraw(canvas);
  progress = progressBar.getProgress();
  if (progress == 0 || progress == progressBar.getMax())
   return;
  this.mPaint.getTextBounds(this.text, 0, this.text.length(), textRect);
 
  proWidth = progressBar.getWidth();
  proHeight = progressBar.getHeight();
 
  //    
  int bitmapx = (int) (progressBar.getLeft() + proWidth * ((progress * 1f) / progressBar.getMax())) - bitmap.getWidth() / 2;
  int bitmapy = proHeight + bitmap.getHeight() / 2;
  if (bitmapx < 0)
   bitmapx = progressBar.getLeft();
  if(bitmapx > progressBar.getRight()-bitmap.getWidth())
   bitmapx = progressBar.getRight()-bitmap.getWidth();
  canvas.drawBitmap(bitmap, bitmapx, bitmapy, mPaint);
 
  //  
  int tvx = (int) (progressBar.getLeft() + proWidth * ((progress * 1f) / progressBar.getMax())) - textRect.centerX();
  int tvy = proHeight + bitmap.getHeight() * 2 + 4;
  if (tvx < 0)
   tvx = progressBar.getLeft();
  if(tvx >= progressBar.getRight()-textRect.width())
   tvx = progressBar.getRight()-textRect.width();
  canvas.drawText(this.text, tvx, tvy + bitmap.getHeight(), this.mPaint);
 
 }
 
 //   ,  
 private void initText(Context context) {
  View inflate = View.inflate(context, R.layout.textprogressbar, this);
  progressBar = (ProgressBar) inflate.findViewById(R.id.progressbar1);
  progressBar.setProgress(50);
  setWillNotDraw(false);
  this.mPaint = new Paint();
  this.mPaint.setColor(getResources().getColor(R.color.red));
  this.mPaint.setTextSize(20);
  textRect = new Rect();
  text = "0";
  bitmap = BitmapFactory.decodeResource(context.getResources(), R.mipmap.progress_top);
 }
 
 public void setProgress(int progress) {
  progressBar.setProgress(progress);
 }
 
 
 public void setText(String str) {
  text = str;
 }
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기