实例介绍
【实例截图】
【核心代码】
package com.github.rahatarmanahmed.cpv;
import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
import android.animation.AnimatorSet;
import android.animation.ValueAnimator;
import android.content.Context;
import android.content.res.Resources;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Paint;
import android.graphics.RectF;
import android.os.Build;
import android.util.AttributeSet;
import android.util.TypedValue;
import android.view.View;
import android.view.animation.DecelerateInterpolator;
import android.view.animation.LinearInterpolator;
/**
* TODO: document your custom view class.
*/
public class CircularProgressView extends View {
private static final float INDETERMINANT_MIN_SWEEP = 15f;
private Paint paint;
private int size = 0;
private RectF bounds;
private boolean isIndeterminate, autostartAnimation;
private float currentProgress, maxProgress, indeterminateSweep, indeterminateRotateOffset;
private int thickness, color, animDuration, animSteps;
public CircularProgressView(Context context) {
super(context);
init(null, 0);
}
public CircularProgressView(Context context, AttributeSet attrs) {
super(context, attrs);
init(attrs, 0);
}
public CircularProgressView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init(attrs, defStyle);
}
protected void init(AttributeSet attrs, int defStyle) {
initAttributes(attrs, defStyle);
paint = new Paint(Paint.ANTI_ALIAS_FLAG);
updatePaint();
bounds = new RectF();
if(autostartAnimation)
startAnimation();
}
private void initAttributes(AttributeSet attrs, int defStyle)
{
final TypedArray a = getContext().obtainStyledAttributes(
attrs, R.styleable.CircularProgressView, defStyle, 0);
Resources resources = getResources();
// Initialize attributes from styleable attributes
currentProgress = a.getFloat(R.styleable.CircularProgressView_cpv_progress,
resources.getInteger(R.integer.cpv_default_progress));
maxProgress = a.getFloat(R.styleable.CircularProgressView_cpv_maxProgress,
resources.getInteger(R.integer.cpv_default_max_progress));
thickness = a.getDimensionPixelSize(R.styleable.CircularProgressView_cpv_thickness,
resources.getDimensionPixelSize(R.dimen.cpv_default_thickness));
isIndeterminate = a.getBoolean(R.styleable.CircularProgressView_cpv_indeterminate,
resources.getBoolean(R.bool.cpv_default_is_indeterminate));
autostartAnimation = a.getBoolean(R.styleable.CircularProgressView_cpv_animAutostart,
resources.getBoolean(R.bool.cpv_default_anim_autostart));
int accentColor = getContext().getResources().getIdentifier("colorAccent", "attr", getContext().getPackageName());
// If color explicitly provided
if (a.hasValue(R.styleable.CircularProgressView_cpv_color)) {
color = a.getColor(R.styleable.CircularProgressView_cpv_color, resources.getColor(R.color.cpv_default_color));
}
// If using support library v7 accentColor
else if(accentColor != 0) {
TypedValue t = new TypedValue();
getContext().getTheme().resolveAttribute(accentColor, t, true);
color = t.data;
}
// If using native accentColor (SDK >21)
else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
TypedArray t = getContext().obtainStyledAttributes(new int[] { android.R.attr.colorAccent });
color = t.getColor(0, resources.getColor(R.color.cpv_default_color));
}
else {
//Use default color
color = resources.getColor(R.color.cpv_default_color);
}
animDuration = a.getInteger(R.styleable.CircularProgressView_cpv_animDuration,
resources.getInteger(R.integer.cpv_default_anim_duration));
animSteps = a.getInteger(R.styleable.CircularProgressView_cpv_animSteps,
resources.getInteger(R.integer.cpv_default_anim_steps));
a.recycle();
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
int xPad = getPaddingLeft() getPaddingRight();
int yPad = getPaddingTop() getPaddingBottom();
int width = getMeasuredWidth() - xPad;
int height = getMeasuredHeight() - yPad;
size = (width < height) ? width : height;
setMeasuredDimension(size xPad, size yPad);
}
@Override
protected void onSizeChanged(int w, int h, int oldw, int oldh) {
super.onSizeChanged(w, h, oldw, oldh);
size = (w < h) ? w : h;
updateBounds();
}
private void updateBounds()
{
int paddingLeft = getPaddingLeft();
int paddingTop = getPaddingTop();
bounds.set(paddingLeft thickness, paddingTop thickness, size-paddingLeft-thickness, size-paddingTop-thickness);
}
private void updatePaint()
{
paint.setColor(color);
paint.setStyle(Paint.Style.STROKE);
paint.setStrokeWidth(thickness);
paint.setStrokeCap(Paint.Cap.BUTT);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
// Draw the arc
float sweepAngle = (isInEditMode()) ? currentProgress/maxProgress*360 : actualProgress/maxProgress*360;
if(!isIndeterminate)
canvas.drawArc(bounds, startAngle, sweepAngle, false, paint);
else
canvas.drawArc(bounds, startAngle indeterminateRotateOffset, indeterminateSweep, false, paint);
}
/**
*
* @return true if this view is in indeterminate mode.
*/
public boolean isIndeterminate() {
return isIndeterminate;
}
/**
* Sets whether this CircularProgressView is indeterminate or not.
* It will reset the animation if the mode has changed.
* @param isIndeterminate
*/
public void setIndeterminate(boolean isIndeterminate) {
boolean reset = this.isIndeterminate == isIndeterminate;
this.isIndeterminate = isIndeterminate;
if(reset)
resetAnimation();
}
/**
*
* @return the thickness of the progress bar arc
*/
public int getThickness() {
return thickness;
}
/**
* Sets the thickness of the progress bar arc.
* @param thickness the thickness of the progress bar arc
*/
public void setThickness(int thickness) {
this.thickness = thickness;
updatePaint();
updateBounds();
invalidate();
}
/**
*
* @return the color of the progress bar
*/
public int getColor() {
return color;
}
/**
* Sets the color of the progress bar.
* @param color the color of the progress bar
*/
public void setColor(int color) {
this.color = color;
updatePaint();
invalidate();
}
/**
* Gets the progress value considered to be 100% of the progress bar.
* @return the maximum progress
*/
public float getMaxProgress() {
return maxProgress;
}
/**
* Sets the progress value considered to be 100% of the progress bar.
* @param maxProgress the maximum progress
*/
public void setMaxProgress(float maxProgress) {
this.maxProgress = maxProgress;
invalidate();
}
/**
*
* @return current progress
*/
public float getProgress() {
return currentProgress;
}
/**
* Sets the progress of the progress bar.
* @param currentProgress
*/
public void setProgress(float currentProgress) {
this.currentProgress = currentProgress;
// Reset the determinate animation to approach the new currentProgress
if(!isIndeterminate)
{
if(progressAnimator != null && progressAnimator.isRunning())
progressAnimator.cancel();
progressAnimator = ValueAnimator.ofFloat(actualProgress, currentProgress);
progressAnimator.setDuration(500);
progressAnimator.setInterpolator(new LinearInterpolator());
progressAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
actualProgress = (Float) animation.getAnimatedValue();
invalidate();
}
});
progressAnimator.start();
}
invalidate();
}
// Animation related stuff
private float startAngle;
private float actualProgress;
private ValueAnimator startAngleRotate;
private ValueAnimator progressAnimator;
private AnimatorSet indeterminateAnimator;
/**
* Starts the progress bar animation.
* (This is an alias of resetAnimation() so it does the same thing.)
*/
public void startAnimation() {
resetAnimation();
}
/**
* Resets the animation.
*/
public void resetAnimation() {
// Cancel all the old animators
if(startAngleRotate != null && startAngleRotate.isRunning())
startAngleRotate.cancel();
if(progressAnimator != null && progressAnimator.isRunning())
progressAnimator.cancel();
if(indeterminateAnimator != null && indeterminateAnimator.isRunning())
indeterminateAnimator.cancel();
// Determinate animation
if(!isIndeterminate)
{
// The cool 360 swoop animation at the start of the animation
startAngle = -90f;
startAngleRotate = ValueAnimator.ofFloat(-90f, 270f);
startAngleRotate.setDuration(5000);
startAngleRotate.setInterpolator(new DecelerateInterpolator(2));
startAngleRotate.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
startAngle = (Float) animation.getAnimatedValue();
invalidate();
}
});
startAngleRotate.start();
// The linear animation shown when progress is updated
actualProgress = 0f;
progressAnimator = ValueAnimator.ofFloat(actualProgress, currentProgress);
progressAnimator.setDuration(500);
progressAnimator.setInterpolator(new LinearInterpolator());
progressAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
actualProgress = (Float) animation.getAnimatedValue();
invalidate();
}
});
progressAnimator.start();
}
// Indeterminate animation
else
{
startAngle = -90f;
indeterminateSweep = INDETERMINANT_MIN_SWEEP;
// Build the whole AnimatorSet
indeterminateAnimator = new AnimatorSet();
AnimatorSet prevSet = null, nextSet;
for(int k=0;k<animSteps;k )
{
nextSet = createIndeterminateAnimator(k);
AnimatorSet.Builder builder = indeterminateAnimator.play(nextSet);
if(prevSet != null)
builder.after(prevSet);
prevSet = nextSet;
}
// Listen to end of animation so we can infinitely loop
indeterminateAnimator.addListener(new AnimatorListenerAdapter() {
boolean wasCancelled = false;
@Override
public void onAnimationCancel(Animator animation) {
wasCancelled = true;
}
@Override
public void onAnimationEnd(Animator animation) {
if(!wasCancelled)
resetAnimation();
}
});
indeterminateAnimator.start();
}
}
// Creates the animators for one step of the animation
private AnimatorSet createIndeterminateAnimator(float step)
{
final float maxSweep = 360f*(animSteps-1)/animSteps INDETERMINANT_MIN_SWEEP;
final float start = -90f step*(maxSweep-INDETERMINANT_MIN_SWEEP);
// Extending the front of the arc
ValueAnimator frontEndExtend = ValueAnimator.ofFloat(INDETERMINANT_MIN_SWEEP, maxSweep);
frontEndExtend.setDuration(animDuration/animSteps/2);
frontEndExtend.setInterpolator(new DecelerateInterpolator(1));
frontEndExtend.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
indeterminateSweep = (Float) animation.getAnimatedValue();
invalidate();
}
});
// Overall rotation
ValueAnimator rotateAnimator1 = ValueAnimator.ofFloat(step*720f/animSteps, (step .5f)*720f/animSteps);
rotateAnimator1.setDuration(animDuration/animSteps/2);
rotateAnimator1.setInterpolator(new LinearInterpolator());
rotateAnimator1.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
indeterminateRotateOffset = (Float) animation.getAnimatedValue();
}
});
// Followed by...
// Retracting the back end of the arc
ValueAnimator backEndRetract = ValueAnimator.ofFloat(start, start maxSweep-INDETERMINANT_MIN_SWEEP);
backEndRetract.setDuration(animDuration/animSteps/2);
backEndRetract.setInterpolator(new DecelerateInterpolator(1));
backEndRetract.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
startAngle = (Float) animation.getAnimatedValue();
indeterminateSweep = maxSweep - startAngle start;
invalidate();
}
});
// More overall rotation
ValueAnimator rotateAnimator2 = ValueAnimator.ofFloat((step .5f)*720f/animSteps, (step 1)*720f/animSteps);
rotateAnimator2.setDuration(animDuration/animSteps/2);
rotateAnimator2.setInterpolator(new LinearInterpolator());
rotateAnimator2.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
@Override
public void onAnimationUpdate(ValueAnimator animation) {
indeterminateRotateOffset = (Float) animation.getAnimatedValue();
}
});
AnimatorSet set = new AnimatorSet();
set.play(frontEndExtend).with(rotateAnimator1);
set.play(backEndRetract).with(rotateAnimator2).after(rotateAnimator1);
return set;
}
}
标签: 对话框 自定义
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明


网友评论
我要评论