안 드 로 이 드 사용자 정의 view 디지털 진도 바 실현
생각:
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 이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.