android自定义圆形倒计时显示控件
作者:丶周大大 时间:2022-12-13 00:27:30
本文实例为大家分享了android自定义圆形倒计时显示控件的具体代码,供大家参考,具体内容如下
先上效果图
- 倒计时结束
代码块
attr.xml 控件需要用到的属性:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<declare-styleable name="CountDownView">
<!--颜色-->
<attr name="ringColor" format="color" />
<!-- 进度文本的字体大小 -->
<attr name="progressTextSize" format="dimension" />
<!-- 圆环宽度 -->
<attr name="ringWidth" format="float" />
<!--进度文本颜色-->
<attr name="progressTextColor" format="color"/>
<!--倒计时-->
<attr name="countdownTime" format="integer"/>
</declare-styleable>
</resources>
CountDownView.java
public class CountDownView extends View {
//圆轮颜色
private int mRingColor;
//圆轮宽度
private float mRingWidth;
//圆轮进度值文本大小
private int mRingProgessTextSize;
//宽度
private int mWidth;
//高度
private int mHeight;
private Paint mPaint;
//圆环的矩形区域
private RectF mRectF;
//
private int mProgessTextColor;
private int mCountdownTime;
private float mCurrentProgress;
private OnCountDownFinishListener mListener;
public CountDownView(Context context) {
this(context, null);
}
public CountDownView(Context context, AttributeSet attrs) {
this(context, attrs, 0);
}
public CountDownView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
TypedArray a = context.obtainStyledAttributes(attrs, R.styleable.CountDownView);
mRingColor = a.getColor(R.styleable.CountDownView_ringColor, context.getResources().getColor(R.color.colorAccent));
mRingWidth = a.getFloat(R.styleable.CountDownView_ringWidth, 40);
mRingProgessTextSize = a.getDimensionPixelSize(R.styleable.CountDownView_progressTextSize, DisplayUtils.sp2px(context, 20));
mProgessTextColor = a.getColor(R.styleable.CountDownView_progressTextColor, context.getResources().getColor(R.color.colorAccent));
mCountdownTime = a.getInteger(R.styleable.CountDownView_countdownTime, 60);
a.recycle();
mPaint = new Paint(Paint.ANTI_ALIAS_FLAG);
mPaint.setAntiAlias(true);
this.setWillNotDraw(false);
}
public void setCountdownTime(int mCountdownTime) {
this.mCountdownTime = mCountdownTime;
}
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
super.onLayout(changed, left, top, right, bottom);
mWidth = getMeasuredWidth();
mHeight = getMeasuredHeight();
mRectF = new RectF(0 + mRingWidth / 2, 0 + mRingWidth / 2,
mWidth - mRingWidth / 2, mHeight - mRingWidth / 2);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
/**
*圆环
*/
//颜色
mPaint.setColor(mRingColor);
//空心
mPaint.setStyle(Paint.Style.STROKE);
//宽度
mPaint.setStrokeWidth(mRingWidth);
canvas.drawArc(mRectF, -90, mCurrentProgress - 360, false, mPaint);
//绘制文本
Paint textPaint = new Paint();
textPaint.setAntiAlias(true);
textPaint.setTextAlign(Paint.Align.CENTER);
String text = mCountdownTime - (int) (mCurrentProgress / 360f * mCountdownTime) + "";
textPaint.setTextSize(mRingProgessTextSize);
textPaint.setColor(mProgessTextColor);
//文字居中显示
Paint.FontMetricsInt fontMetrics = textPaint.getFontMetricsInt();
int baseline = (int) ((mRectF.bottom + mRectF.top - fontMetrics.bottom - fontMetrics.top) / 2);
canvas.drawText(text, mRectF.centerX(), baseline, textPaint);
}
private ValueAnimator getValA(long countdownTime) {
ValueAnimator valueAnimator = ValueAnimator.ofFloat(0, 100);
valueAnimator.setDuration(countdownTime);
valueAnimator.setInterpolator(new LinearInterpolator());
valueAnimator.setRepeatCount(0);
return valueAnimator;
}
/**
* 开始倒计时
*/
public void startCountDown() {
setClickable(false);
ValueAnimator valueAnimator = getValA(mCountdownTime * 1000);
valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
float i = Float.valueOf(String.valueOf(animation.getAnimatedValue()));
mCurrentProgress = (int) (360 * (i / 100f));
invalidate();
}
});
valueAnimator.start();
valueAnimator.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
super.onAnimationEnd(animation);
//倒计时结束回调
if (mListener != null) {
mListener.countDownFinished();
}
setClickable(true);
}
});
}
public void setAddCountDownListener(OnCountDownFinishListener mListener) {
this.mListener = mListener;
}
public interface OnCountDownFinishListener {
void countDownFinished();
}
}
MainActivity.java
package com.ouyuan.demo.myapplication;
import android.animation.ValueAnimator;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
CountDownView cdv;
TextView textView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
cdv = (CountDownView) findViewById(R.id.countDownView);
cdv.setAddCountDownListener(new CountDownView.OnCountDownFinishListener() {
@Override
public void countDownFinished() {
Toast.makeText(MainActivity.this, "倒计时结束", Toast.LENGTH_SHORT).show();
}
});
cdv.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
cdv.startCountDown();
}
});
}
}
来源:https://blog.csdn.net/jpxzqs/article/details/52439741
标签:android,倒计时
0
投稿
猜你喜欢
如何设置Spring Boot测试时的日志级别
2023-11-10 14:11:20
基于<aop:aspect>与<aop:advisor>的区别
2023-01-22 21:53:35
c#实现万年历示例分享 万年历农历查询
2022-11-08 23:26:57
android开发教程之间隔执行程序(android计时器)
2023-11-29 22:43:51
ReadWriteLock接口及其实现ReentrantReadWriteLock方法
2023-11-24 01:46:52
Android中使用定时器的三种方法
2022-06-04 00:16:20
浅谈Glide缓存key的问题
2023-10-05 05:26:35
java文件操作输入输出结构详解
2023-07-30 21:48:30
Java中常用缓存Cache机制的实现
2023-05-27 23:32:22
深入学习C#网络编程之HTTP应用编程(上)
2023-12-12 23:12:27
使用WebSocket实现即时通讯(一个群聊的聊天室)
2023-11-29 03:00:46
java实现删除某条信息并刷新当前页操作
2022-06-26 07:12:12
Android中手机震动的设置(Vibrator)的步骤简要说明
2021-08-18 08:50:29
Android仿QQ微信实时监测网络状态
2022-10-10 06:48:52
Android集成微信支付功能
2023-07-14 10:38:11
Java毕业设计实战之图片展览馆管理系统的实现
2021-06-16 08:23:18
Android实现Path平滑的涂鸦效果实例
2023-12-11 23:07:45
SpringBoot停止启动时测试检查rabbitmq操作
2023-04-06 10:05:05
C#动态生成DropDownList执行失败原因分析
2023-08-30 22:37:28
为什么Spring官方推荐的@Transational还能导致生产事故
2022-02-13 15:54:37