自定义圆形倒计时Android,Android自定义View倒计时圆

本文实例为大家分享了Android自定义View倒计时圆的具体代码,供大家参考,具体内容如下

bd933a86525a82d4a7bd4eff681a79c4.png

创建attr

创建DisplayUtil 类

import android.content.Context;

/**

* Created by 王 on 2017/10/21.

*/

public class DisplayUtil {

/**

* 将px装换成dp,保证尺寸不变

* @param context

* @param pxValue

* @return

*/

public static int px2dp(Context context, float pxValue){

float density = context.getResources().getDisplayMetrics().density;//得到设备的密度

return (int) (pxValue/density+0.5f);

}

public static int dp2px(Context context,float dpValue){

float density = context.getResources().getDisplayMetrics().density;

return (int) (dpValue*density+0.5f);

}

public static int px2sp(Context context,float pxValue){

float scaleDensity = context.getResources().getDisplayMetrics().scaledDensity;//缩放密度

return (int) (pxValue/scaleDensity+0.5f);

}

public static int sp2px(Context context,float spValue) {

float scaleDensity = context.getResources().getDisplayMetrics().scaledDensity;

return (int) (spValue*scaleDensity+0.5f);

}

}

继承View

import android.animation.Animator;

import android.animation.AnimatorListenerAdapter;

import android.animation.ValueAnimator;

import android.content.Context;

import android.content.res.TypedArray;

import android.graphics.Canvas;

import android.graphics.Paint;

import android.graphics.RectF;

import android.util.AttributeSet;

import android.view.View;

import android.view.animation.LinearInterpolator;

/**

* Created by 王 on 2017/10/21.

*/

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, DisplayUtil.sp2px(context, 20));

mProgessTextColor = a.getColor(R.styleable.CountDownView_progressTextColor, context.getResources().getColor(R.color.colorAccent));

mCountdownTime = a.getInteger(R.styleable.CountDownView_countdownTime, 10);

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();

}

}

布局

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="com.example.circulardemo.MainActivity">

android:id="@+id/cdv"

android:layout_width="50dp"

android:layout_height="50dp"

android:layout_centerVertical="true"

android:layout_centerHorizontal="true" />

Mainactivity

import android.os.Bundle;

import android.support.v7.app.AppCompatActivity;

public class MainActivity extends AppCompatActivity {

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

CountDownView countDownView = (CountDownView) findViewById(R.id.cdv);

//启动

countDownView.startCountDown();

countDownView.setAddCountDownListener(new CountDownView.OnCountDownFinishListener() {

@Override

public void countDownFinished() {

Toast.makeText(MainActivity.this, "倒计时结束", Toast.LENGTH_SHORT).show();

}

});

}

}

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

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/409354.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

pandas 合并所有列_图解Python表格操作包Pandas

Pandas 是 Python 的核心数据分析支持库,提供了快速、灵活、明确的数据结构,旨在简单、直观地处理关系型、标记型数据。Pandas 的目标是成为 Python 数据分析实践与实战的必备高级工具,其长远目标是成为最强大、最灵活、可以支持任何语言的开…

html下划线 下移,css如何实现下划线滑动效果

本文主要讲述两种下划线动效效果,第一种悬停时X轴由内向外展开实现动画效果,第二种为左右自动展示,由左向右,或由右向左。实现的主要效果是利用伪类标签,以及hover,利用transfromm trition实现动画效果。x轴由内向外展…

已知网友建立html,职称计算机模拟试题:Dreamweaver网页设计模拟试题及答案(5)...

52、在使用时间链时,用“Record Path of Layer”命令记录层的路径,关于关键点的说法正确的是(CD)A、用户拖动层的速度越快,则划分出的关键点越多B、用户拖动层的速度越快,则划分出的关键点越少C、用户可以通过改变拖动的速度来变更…

html设计网页技巧,网页设计技巧:网页表格设计技巧总结

一个好的表格应该以易于理解,简单明了的方式传递大量的信息。真正的重点应该 放在信息上, 对表格的过度设计会抵消这种作用。从另一方面来说,巧妙的设计不仅可以使一个表格更具吸引力, 而且可以增加可读性。表格信息通常是很乏味的…

【原】unity shader(3)反射贴图

改编自《cg教程--可编程实时图形学权威指南》上的demo。 反射向量计算公式 RI-2N(N*I) 备注N*I是点乘 I入射光线,N法向量 函数实现: float3 reflect(float3 I,float3 N) { return I-2.0*N*dot(N,I); } Shader "CG shader Reflect"{Propertie…

html 显示不吃,20180902_html_第二次_张旺

Frequently Asked QuestionsIs it secure to send my companys information to COMIS?How can I enable SSL for my computer?1. Is it secure to send my companys information to COMIS?Your company information is protected by your unique user name and passwordwhic…