我是靠谱客的博主 快乐啤酒,这篇文章主要介绍android实现圆环倒计时控件,现在分享给大家,希望可以做个参考。

本文实例为大家分享了android实现圆环倒计时控件的具体代码,供大家参考,具体内容如下

1.自定义属性

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?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>

2.自定义view

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
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; ValueAnimator valueAnimator; /** * 监听事件 */ private OnCountDownListener mListener; public CountDownView(Context context) { this(context, null); } public CountDownView(Context context, @Nullable AttributeSet attrs) { this(context, attrs, 0); } public CountDownView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); // init(); /** * 获取相关属性值 */ TypedArray typedArray = context.obtainStyledAttributes(attrs, R.styleable.CountDownView); mRingColor = typedArray.getColor(R.styleable.CountDownView_ringColor, context.getResources().getColor(R.color.colorAccent)); mRingWidth = typedArray.getFloat(R.styleable.CountDownView_ringWidth, 40); mRingProgessTextSize = typedArray.getDimensionPixelSize(R.styleable.CountDownView_progressTextSize, 20); mProgessTextColor = typedArray.getColor(R.styleable.CountDownView_progressTextColor, context.getResources().getColor(R.color.colorAccent)); mCountdownTime = typedArray.getInteger(R.styleable.CountDownView_countdownTime, 60); typedArray.recycle(); mPaint = new Paint(Paint.ANTI_ALIAS_FLAG); mPaint.setAntiAlias(true); this.setWillNotDraw(false); } @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); } /** * 设置倒计时间 单位秒 * @param mCountdownTime */ public void setCountdownTime(int mCountdownTime) { this.mCountdownTime = mCountdownTime; invalidate(); } // public CountDownView(Context context, @Nullable AttributeSet attrs, int defStyleAttr, int defStyleRes) { // super(context, attrs, defStyleAttr, defStyleRes); // } /** * 动画 * @param countdownTime * @return */ private ValueAnimator getValueAnimator(long countdownTime) { ValueAnimator valueAnimator = ValueAnimator.ofFloat(0, 100); valueAnimator.setDuration(countdownTime); valueAnimator.setInterpolator(new LinearInterpolator()); valueAnimator.setRepeatCount(0); return valueAnimator; } @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); } /** * 开始倒计时 */ public void startCountDown() { valueAnimator = getValueAnimator(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(); } } }); } /** * 停止倒计时 */ public void stopCountDdwn(){ valueAnimator.cancel(); } public void setOnCountDownListener(OnCountDownListener mListener) { this.mListener = mListener; } }

3.布局文件

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <demo.com.countdowndemo.CountDownView android:id="@+id/countDownView" android:layout_width="50dp" android:layout_height="50dp" app:countdownTime="5" app:ringWidth="2" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> </android.support.constraint.ConstraintLayout>

4.Activity

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
public class MainActivity extends AppCompatActivity { CountDownView countDownView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); countDownView = findViewById(R.id.countDownView); countDownView.setOnCountDownListener(new OnCountDownListener() { @Override public void countDownFinished() { //倒计时结束 //countDownView.setCountdownTime(10); Intent intent = new Intent(MainActivity.this, Main2Activity.class); startActivity(intent); } }); countDownView.startCountDown(); countDownView.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { countDownView.stopCountDdwn(); Intent intent = new Intent(MainActivity.this, Main2Activity.class); startActivity(intent); } }); } }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持靠谱客。

最后

以上就是快乐啤酒最近收集整理的关于android实现圆环倒计时控件的全部内容,更多相关android实现圆环倒计时控件内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(132)

评论列表共有 0 条评论

立即
投稿
返回
顶部