안 드 로 이 드 사용자 정의 view 디지털 진도 바 실현

4160 단어 android진도 표
전에 숫자 진도 표를 봤 는데 계속 쓰 고 싶 었 어 요.오늘 은 이 걸 실현 해 보 세 요.생각해 보 니 간단 해 요.먼저 실현 효 과 를 보 세 요.

생각:
2 개의 선 을 그 려 서 진도 줄 의 글 자 를 그립 니 다.출발점 과 종점 을 계속 바 꾸 고 UI 를 업데이트 할 시간 이 얼마 없 으 면 ok 입 니 다.여기 서 그림 을 그리 지 않 습 니 다.코드 를 보면 알 수 있 습 니 다.복잡 하 게 생각 하지 마 세 요!

package com.tuya;
import android.animation.ValueAnimator;
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.view.View;
/**
 * Created by admin on 2016/12/19.
 */
public class DownLoadProgressView extends View {
 private Paint paint;//       
 private Paint textPaint;//      
 private Paint dottePaint;//       
 private int width;
 private int height;
 private int padding =5;
 private int value = 0;
 public DownLoadProgressView(Context context) {
  this(context,null);
 }
 public DownLoadProgressView(Context context, AttributeSet attrs) {
  this(context, attrs,0);
 }
 public DownLoadProgressView(Context context, AttributeSet attrs, int defStyleAttr) {
  super(context, attrs, defStyleAttr);
  initPaint();
 }
 @Override
 protected void onSizeChanged(int w, int h, int oldw, int oldh) {
  super.onSizeChanged(w, h, oldw, oldh);
  width = w;
  height = h;
 }
 /**
  *      
  */
 private void initPaint() {
  paint = new Paint();
  paint.setAntiAlias(true);
  paint.setStrokeWidth(2);
  paint.setStyle(Paint.Style.FILL);
  paint.setColor(Color.BLUE);

  textPaint = new Paint();
  textPaint.setAntiAlias(true);
  textPaint.setStrokeWidth(3);
  textPaint.setStyle(Paint.Style.FILL);
  textPaint.setColor(Color.BLUE);
  textPaint.setTextSize(12);

  dottePaint = new Paint();
  dottePaint.setAntiAlias(true);
  dottePaint.setStrokeWidth(2);
  dottePaint.setStyle(Paint.Style.FILL);
  dottePaint.setColor(Color.parseColor("#e5e5e5"));
 }
 @Override
 protected void onDraw(Canvas canvas) {
  super.onDraw(canvas);
  String str = value+"%";
  float strWidth = textPaint.measureText(value+"%")+padding;//        +padding                           
  Rect rect = new Rect();
  textPaint.getTextBounds(str,0,str.length(),rect);
  canvas.drawLine(0,height/2,value*((width-strWidth)/100),height/2,paint);//    
  canvas.drawText(value+"%",value*((width-strWidth)/100)+padding,(height-rect.height())/2+2*padding,textPaint);//           +2*padding   drawText        ,          
  canvas.drawLine(value*((width-strWidth)/100)+strWidth+padding,height/2,width,height/2,dottePaint);//            
  postDelayed(new Runnable() {
   @Override
   public void run() {
    if(value<100){
     value++;
     postInvalidate();
    }
   }
  },100);
 }
}
레이아웃 파일:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:background="#7EC0EE">
 <com.tuya.DownLoadProgressView
  android:id="@+id/dpv"
  android:layout_width="fill_parent"
  android:layout_height="30dp"
  android:layout_marginLeft="10dp"
  android:layout_marginRight="10dp"
  android:layout_marginTop="60dp"
  ></com.tuya.DownLoadProgressView>
</RelativeLayout>
github: NumberProgress
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기