現(xiàn)在很多app的首頁(yè)都有一個(gè)倒計(jì)時(shí)控件,比如說(shuō)3秒或者5秒自動(dòng)跳轉(zhuǎn)界面,或者點(diǎn)擊控件直接跳過(guò)
創(chuàng)新互聯(lián)建站專(zhuān)注為客戶(hù)提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)、黃陂網(wǎng)絡(luò)推廣、小程序定制開(kāi)發(fā)、黃陂網(wǎng)絡(luò)營(yíng)銷(xiāo)、黃陂企業(yè)策劃、黃陂品牌公關(guān)、搜索引擎seo、人物專(zhuān)訪(fǎng)、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)建站為所有大學(xué)生創(chuàng)業(yè)者提供黃陂建站搭建服務(wù),24小時(shí)服務(wù)熱線(xiàn):18982081108,官方網(wǎng)址:www.cdcxhl.com
首先,自定義控件CircleProgressbar(參考網(wǎng)上資料)
package com.zhoujian.mykeep.view; import android.annotation.TargetApi; import android.content.Context; import android.content.res.ColorStateList; import android.content.res.TypedArray; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.Rect; import android.graphics.RectF; import android.os.Build; import android.support.annotation.ColorInt; import android.util.AttributeSet; import android.widget.TextView; import com.zhoujian.mykeep.R; public class CircleProgressbar extends TextView { //外部輪廓的顏色 private int outLineColor = Color.BLACK; //外部輪廓的寬度 private int outLineWidth = 2; //內(nèi)部圓的顏色 private ColorStateList inCircleColors = ColorStateList.valueOf(Color.TRANSPARENT); //中心圓的顏色 private int circleColor; //進(jìn)度條的顏色 private int progressLineColor = Color.BLUE; //進(jìn)度條的寬度 private int progressLineWidth = 8; //畫(huà)筆 private Paint mPaint = new Paint(); //進(jìn)度條的矩形區(qū)域 private RectF mArcRect = new RectF(); //進(jìn)度 private int progress = 100; //進(jìn)度條類(lèi)型 private ProgressType mProgressType = ProgressType.COUNT_BACK; //進(jìn)度倒計(jì)時(shí)時(shí)間 private long timeMillis = 3000; //View的顯示區(qū)域。 final Rect bounds = new Rect(); //進(jìn)度條通知。 private OnCountdownProgressListener mCountdownProgressListener; private int listenerWhat = 0; public CircleProgressbar(Context context) { this(context, null); } public CircleProgressbar(Context context, AttributeSet attrs) { this(context, attrs, 0); } public CircleProgressbar(Context context, AttributeSet attrs, int defStyleAttr) { super(context, attrs, defStyleAttr); initialize(context, attrs); } @TargetApi(Build.VERSION_CODES.LOLLIPOP) public CircleProgressbar(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) { super(context, attrs, defStyleAttr, defStyleRes); initialize(context, attrs); } private void initialize(Context context, AttributeSet attributeSet) { mPaint.setAntiAlias(true); TypedArray typedArray = context.obtainStyledAttributes(attributeSet, R.styleable.CircleProgressbar); if (typedArray.hasValue(R.styleable.CircleProgressbar_in_circle_color)) inCircleColors = typedArray.getColorStateList(R.styleable.CircleProgressbar_in_circle_color); else inCircleColors = ColorStateList.valueOf(Color.TRANSPARENT); circleColor = inCircleColors.getColorForState(getDrawableState(), Color.TRANSPARENT); typedArray.recycle(); } public void setOutLineColor(@ColorInt int outLineColor) { this.outLineColor = outLineColor; invalidate(); } public void setOutLineWidth(@ColorInt int outLineWidth) { this.outLineWidth = outLineWidth; invalidate(); } public void setInCircleColor(@ColorInt int inCircleColor) { this.inCircleColors = ColorStateList.valueOf(inCircleColor); invalidate(); } private void validateCircleColor() { int circleColorTemp = inCircleColors.getColorForState(getDrawableState(), Color.TRANSPARENT); if (circleColor != circleColorTemp) { circleColor = circleColorTemp; invalidate(); } } public void setProgressColor(@ColorInt int progressLineColor) { this.progressLineColor = progressLineColor; invalidate(); } public void setProgressLineWidth(int progressLineWidth) { this.progressLineWidth = progressLineWidth; invalidate(); } public void setProgress(int progress) { this.progress = validateProgress(progress); invalidate(); } private int validateProgress(int progress) { if (progress > 100) progress = 100; else if (progress < 0) progress = 0; return progress; } public int getProgress() { return progress; } public void setTimeMillis(long timeMillis) { this.timeMillis = timeMillis; invalidate(); } public long getTimeMillis() { return this.timeMillis; } public void setProgressType(ProgressType progressType) { this.mProgressType = progressType; resetProgress(); invalidate(); } private void resetProgress() { switch (mProgressType) { case COUNT: progress = 0; break; case COUNT_BACK: progress = 100; break; } } public ProgressType getProgressType() { return mProgressType; } public void setCountdownProgressListener(int what, OnCountdownProgressListener mCountdownProgressListener) { this.listenerWhat = what; this.mCountdownProgressListener = mCountdownProgressListener; } public void start() { stop(); post(progressChangeTask); } public void reStart() { resetProgress(); start(); } public void stop() { removeCallbacks(progressChangeTask); } @Override protected void onDraw(Canvas canvas) { //獲取view的邊界 getDrawingRect(bounds); int size = bounds.height() > bounds.width() ? bounds.width() : bounds.height(); float outerRadius = size / 2; //畫(huà)內(nèi)部背景 int circleColor = inCircleColors.getColorForState(getDrawableState(), 0); mPaint.setStyle(Paint.Style.FILL); mPaint.setColor(circleColor); canvas.drawCircle(bounds.centerX(), bounds.centerY(), outerRadius - outLineWidth, mPaint); //畫(huà)邊框圓 mPaint.setStyle(Paint.Style.STROKE); mPaint.setStrokeWidth(outLineWidth); mPaint.setColor(outLineColor); canvas.drawCircle(bounds.centerX(), bounds.centerY(), outerRadius - outLineWidth / 2, mPaint); //畫(huà)字 Paint paint = getPaint(); paint.setColor(getCurrentTextColor()); paint.setAntiAlias(true); paint.setTextAlign(Paint.Align.CENTER); float textY = bounds.centerY() - (paint.descent() + paint.ascent()) / 2; canvas.drawText(getText().toString(), bounds.centerX(), textY, paint); //畫(huà)進(jìn)度條 mPaint.setColor(progressLineColor); mPaint.setStyle(Paint.Style.STROKE); mPaint.setStrokeWidth(progressLineWidth); mPaint.setStrokeCap(Paint.Cap.ROUND); int deleteWidth = progressLineWidth + outLineWidth; mArcRect.set(bounds.left + deleteWidth / 2, bounds.top + deleteWidth / 2, bounds.right - deleteWidth / 2, bounds.bottom - deleteWidth / 2); canvas.drawArc(mArcRect, 0, 360 * progress / 100, false, mPaint); } @Override protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(widthMeasureSpec, heightMeasureSpec); int lineWidth = 4 * (outLineWidth + progressLineWidth); int width = getMeasuredWidth(); int height = getMeasuredHeight(); int size = (width > height ? width : height) + lineWidth; setMeasuredDimension(size, size); } @Override protected void drawableStateChanged() { super.drawableStateChanged(); validateCircleColor(); } private Runnable progressChangeTask = new Runnable() { @Override public void run() { removeCallbacks(this); switch (mProgressType) { case COUNT: progress += 1; break; case COUNT_BACK: progress -= 1; break; } if (progress >= 0 && progress <= 100) { if (mCountdownProgressListener != null) mCountdownProgressListener.onProgress(listenerWhat, progress); invalidate(); postDelayed(progressChangeTask, timeMillis / 100); } else progress = validateProgress(progress); } }; public enum ProgressType { /** * 順數(shù)進(jìn)度條,從0-100; */ COUNT, /** * 倒數(shù)進(jìn)度條,從100-0; */ COUNT_BACK; } public interface OnCountdownProgressListener { void onProgress(int what, int progress); } }
activity_splash.xml
<?xml version="1.0" encoding="utf-8"?>
SplashActivity.java
package com.zhoujian.mykeep.activity; import android.content.Intent; import android.graphics.Color; import android.os.Bundle; import android.support.v7.app.AppCompatActivity; import android.util.Log; import android.view.View; import com.zhoujian.mykeep.R; import com.zhoujian.mykeep.view.CircleProgressbar; public class SplashActivity extends AppCompatActivity { private static final String TAG ="SplashActivity"; private CircleProgressbar mCircleProgressbar; private boolean isClick = false; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_splash); mCircleProgressbar = (CircleProgressbar) findViewById(R.id.tv_red_skip); mCircleProgressbar.setOutLineColor(Color.TRANSPARENT); mCircleProgressbar.setInCircleColor(Color.parseColor("#505559")); mCircleProgressbar.setProgressColor(Color.parseColor("#1BB079")); mCircleProgressbar.setProgressLineWidth(5); mCircleProgressbar.setProgressType(CircleProgressbar.ProgressType.COUNT); mCircleProgressbar.setTimeMillis(5000); mCircleProgressbar.reStart(); mCircleProgressbar.setCountdownProgressListener(1,progressListener); mCircleProgressbar.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { isClick = true; Intent intent = new Intent(SplashActivity.this,MainActivity.class); startActivity(intent); finish(); } }); } private CircleProgressbar.OnCountdownProgressListener progressListener = new CircleProgressbar.OnCountdownProgressListener() { @Override public void onProgress(int what, int progress) { if(what==1 && progress==100 && !isClick) { Intent intent = new Intent(SplashActivity.this,MainActivity.class); startActivity(intent); finish(); Log.e(TAG, "onProgress: =="+progress ); } } }; }
顯示效果:
源碼下載:MyKeep
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。