天天看点

自定义圆形水波纹View

学了一段时间的自定义view了,现在回顾一下关于贝塞尔曲线的用法。不说废话,直接撸代码。

首先在attrs中定义一个命名空间
 <declare-styleable name="CircleWaveView">
        <attr name="waveColor" format="color"></attr>
        <attr name="waveHight" format="dimension"></attr>
        <attr name="waveBackColor" format="color"></attr>
        <attr name="innerRadius" format="dimension"></attr>
        <attr name="outCircleWidth" format="dimension"></attr>
        <attr name="outCircleColor" format="color"></attr>
        <attr name="textSize" format="dimension"></attr>
        <attr name="textColor" format="color"></attr>
        <attr name="waveWidth" format="dimension"></attr>
    </declare-styleable>
           
自定义圆形水波纹View

然后是要用到的一些基本数据

private int waveColor;//波浪的颜色

private float waveHight;//波浪的高度

private int waveBackColor;//波浪的后部的颜色

private float innerRadius;//内部圆的半径,即波浪要显示的区域

private float outCircleWidth;//外部圆环的宽度

private int outCircleColor;//外部圆环的颜色

private float textSize;//字体大小

private int textColor;//字体颜色

private float waveWidth;//波浪的宽度

private float centerX,centerY;//view中心点
private float progress=0.3f;//绘制的进度
private float wholeMoveY,startY;//Y轴上总的移动距离与初始位置
private int maxProgress=100;//最大的进度
private int curProgress=50;//当前的进度
private float percentage=0.5f;//当前进度的百分比
           
构造方法里获取基本参数
 public CircleWaveView(Context context, AttributeSet attrs) {
        super(context, attrs);
        TypedArray typedArray=context.obtainStyledAttributes(attrs,R.styleable.CircleWaveView);
        waveColor=typedArray.getColor(R.styleable.CircleWaveView_waveColor, Color.WHITE);
        waveHight=typedArray.getDimension(R.styleable.CircleWaveView_waveHight,);
        waveBackColor=typedArray.getColor(R.styleable.CircleWaveView_waveBackColor,Color.GRAY);
        innerRadius=typedArray.getDimension(R.styleable.CircleWaveView_innerRadius,);
        outCircleWidth=typedArray.getDimension(R.styleable.CircleWaveView_outCircleWidth,);
                outCircleColor=typedArray.getColor(R.styleable.CircleWaveView_outCircleColor,Color.BLUE);
        textSize=typedArray.getDimension(R.styleable.CircleWaveView_textSize,);
        textColor=typedArray.getColor(R.styleable.CircleWaveView_textColor,Color.BLUE);
        waveWidth=typedArray.getDimension(R.styleable.CircleWaveView_waveWidth,);
        initPaint();
        typedArray.recycle();
    }
           
在onSizeChanged中计算出中心点,波浪上下移动的最大距离,波浪开始时Y方向位置。
波浪上下移动的最大距离:中心圆的直径(*innerRadius)+进度零时下一一个波浪的高度(waveHight)+
进度为时上移一个波浪的高度(waveHight)
波浪开始时Y:开始时进度为零,绘制从中心点下移一个半径到达圆的底部,在下移一个波浪的高度,此时便看不到波浪了。
    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        super.onSizeChanged(w, h, oldw, oldh);
        centerX=w/f;
        centerY=h/f;
        wholeMoveY=*(innerRadius+waveHight);//这是波浪上下移动的最大距离
        startY=centerY+innerRadius+waveHight;//这是波浪最初的位置即progress=0,
    }
           
绘制波浪的背景圆与外部环形进度
    /**
     * 绘制波浪的背景
     * @param canvas
     */
    private void drawCircles(Canvas canvas){
        canvas.drawCircle(centerX,centerY,innerRadius,centerPaint);
        if (out==null){
            out=new RectF();
            out.left=centerX-innerRadius-outCircleWidth/;
            out.top=centerY-innerRadius-outCircleWidth/;
            out.right=centerX+innerRadius+outCircleWidth/;
            out.bottom=centerY+innerRadius+outCircleWidth/;
        }
        canvas.drawArc(out,,f*curProgress/maxProgress,false,outPaint);
    }
           
开始绘制水波纹,这里因为绘制的水波纹是圆形的,而我们的path绘制的路径后显示的是一个不规则的类似四边形的一个图形所以要裁剪一下画布,将画布裁剪呈圆形,这样绘制出来的曲线边缘呈现出来就是圆形的了。
    /**
     * 在view中心的圆上开始绘制水波纹,即绘制一段贝塞尔曲线
     * @param canvas
     */
    private void drawWave(Canvas canvas){
        if(clipPath==null){
            path=new Path();
            clipPath=new Path();
            //要裁剪的圆形画布,innerRadius是在xml文件中定义的内部的圆的半径
            //即波浪最终显示的范围
            clipPath.addCircle(centerX,centerY,innerRadius, Path.Direction.CCW);
        }
        canvas.save();
        //裁剪画布在圆形的画布上绘制曲线
        canvas.clipPath(clipPath);
        path.reset();
        //默认progress=0,也就是从-waveWidth处开始绘制,多绘制了一个波纹的长度用于后边的移动
        curX=centerX-innerRadius-waveWidth*(-progress);
        curY=startY-wholeMoveY*(curProgress*f/maxProgress);
        path.moveTo(curX,curY);
        for (float i=-waveWidth;i<centerY+innerRadius+waveWidth;i+=waveWidth){
            path.rQuadTo(waveWidth/,waveHight,waveWidth/,);
            path.rQuadTo(waveWidth/,-waveHight,waveWidth/,);
        }
        path.lineTo(getWidth(),getHeight());
        path.lineTo(,getHeight());
        path.close();
        canvas.drawPath(path,wavePaint);
        canvas.restore();
    }
           
最后是绘制文字,没啥好说的就是注意一下文字的中心要与view的中心对齐。
private void drawText(Canvas canvas){
        String text=(int)(percentage*100)+"%";
        Paint.FontMetrics metrics=textPaint.getFontMetrics();
        //获取文字的长度
        float textWidth=textPaint.measureText(text);
        //计算文字的高度,这里计算可能有点小问题不过我们需要的只是一个大约高度,不影响,不纠结,重点是贝塞尔曲线的绘制
        float textHight=metrics.descent-metrics.top;
        //计算文字的位置,我们让文字的中心与view的中心重合
        int textX= (int) (centerX-textWidth/);
        int textY= (int) (centerY+textHight/);
        canvas.drawText(text,textX,textY,textPaint);
    }
           
要想让波浪动起来就要用一个ValueAnimator来不停的改变绘制的进度progress,刷新界面重新绘制界面。
public void setWaveAnim(boolean run){
       if (waveAnim==null){
           waveAnim=ValueAnimator.ofFloat(,);
           waveAnim.setDuration();
           waveAnim.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
               @Override
               public void onAnimationUpdate(ValueAnimator animation) {
                   progress=animation.getAnimatedFraction();
                   invalidate();
               }
           });
           waveAnim.setInterpolator(new LinearInterpolator());
           //无限循环
           waveAnim.setRepeatCount(ValueAnimator.INFINITE);
       }
        if (run){
            if (!waveAnim.isRunning()){
                waveAnim.start();
            }
        }else {
            if (waveAnim.isRunning()){
                waveAnim.cancel();
            }
        }
    }
           
最后附上全部代码,复制粘贴即可,别忘了在开头的命名空间
import android.animation.ValueAnimator;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Path;
import android.graphics.RectF;
import android.util.AttributeSet;
import android.util.Log;
import android.view.View;
import android.view.animation.AnticipateInterpolator;
import android.view.animation.LinearInterpolator;

/**
 * @description: <描述当前版本功能>
 * <p>
 * </p>
 * @author: ZBK
 * @date: 2017-05-08 16:31
 */
public class CircleWaveView extends View{

    public static final String TAG="CircleWaveView";


    private int waveColor;//波浪的颜色
    private float waveHight;//波浪的高度
    private int waveBackColor;//波浪的后部的颜色
    private float innerRadius;//内部圆的半径,即波浪要显示的区域
    private float outCircleWidth;//外部圆环的宽度
    private int outCircleColor;//外部圆环的颜色
    private float textSize;//字体大小
    private int textColor;//字体颜色
    private float waveWidth;//波浪的宽度

    private float centerX,centerY;//view中心点
    private float progress=f;//绘制的进度
    private float wholeMoveY,startY;//Y轴上总的移动距离与初始位置
    private int maxProgress=;//最大的进度
    private int curProgress=;//当前的进度
    private float percentage=f;//当前进度的百分比
    private ValueAnimator waveAnim,riseAnim;



    private Paint wavePaint,textPaint,centerPaint,outPaint;


    public CircleWaveView(Context context, AttributeSet attrs) {
        super(context, attrs);
        TypedArray typedArray=context.obtainStyledAttributes(attrs,R.styleable.CircleWaveView);
        waveColor=typedArray.getColor(R.styleable.CircleWaveView_waveColor, Color.WHITE);
        waveHight=typedArray.getDimension(R.styleable.CircleWaveView_waveHight,);
        waveBackColor=typedArray.getColor(R.styleable.CircleWaveView_waveBackColor,Color.GRAY);
        innerRadius=typedArray.getDimension(R.styleable.CircleWaveView_innerRadius,);
        outCircleWidth=typedArray.getDimension(R.styleable.CircleWaveView_outCircleWidth,);
        outCircleColor=typedArray.getColor(R.styleable.CircleWaveView_outCircleColor,Color.BLUE);
        textSize=typedArray.getDimension(R.styleable.CircleWaveView_textSize,);
        textColor=typedArray.getColor(R.styleable.CircleWaveView_textColor,Color.BLUE);
        waveWidth=typedArray.getDimension(R.styleable.CircleWaveView_waveWidth,);
        initPaint();
        typedArray.recycle();
    }


    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        super.onSizeChanged(w, h, oldw, oldh);
        centerX=w/f;
        centerY=h/f;
        wholeMoveY=*(innerRadius+waveHight);//这是波浪上下移动的最大距离
        startY=centerY+innerRadius+waveHight;//这是波浪最初的位置即progress=0,
    }

    private void initPaint(){
        wavePaint=new Paint();
        textPaint=new Paint();
        centerPaint=new Paint();
        outPaint=new Paint();

        wavePaint.setStyle(Paint.Style.FILL_AND_STROKE);
        centerPaint.setStyle(Paint.Style.FILL_AND_STROKE);
        outPaint.setStyle(Paint.Style.STROKE);
        outPaint.setStrokeWidth(outCircleWidth);

        wavePaint.setAntiAlias(true);
        centerPaint.setAntiAlias(true);
        outPaint.setAntiAlias(true);
        textPaint.setAntiAlias(true);

        wavePaint.setColor(waveColor);
        centerPaint.setColor(waveBackColor);
        outPaint.setColor(outCircleColor);
        textPaint.setColor(textColor);
        textPaint.setTextSize(textSize);
        outPaint.setStrokeCap(Paint.Cap.ROUND);
        outPaint.setStrokeJoin(Paint.Join.ROUND);
    }

    private RectF out;

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        drawCircles(canvas);
        drawWave(canvas);
        canvas.drawArc(out,,f*curProgress/maxProgress,false,outPaint);
        drawText(canvas);
    }



    private void drawText(Canvas canvas){
        String text=(int)(percentage*)+"%";
        Paint.FontMetrics metrics=textPaint.getFontMetrics();
        //获取文字的长度
        float textWidth=textPaint.measureText(text);
        //计算文字的高度,这里计算可能有点小问题不过我们需要的只是一个大约高度,不影响,不纠结,重点是贝塞尔曲线的绘制
        float textHight=metrics.descent-metrics.top;
        //计算文字的位置,我们让文字的中心与view的中心重合
        int textX= (int) (centerX-textWidth/);
        int textY= (int) (centerY+textHight/);
        canvas.drawText(text,textX,textY,textPaint);
    }


    private Path path,clipPath;
    private float curX,curY;

    /**
     * 在view中心的圆上开始绘制水波纹,即绘制一段贝塞尔曲线
     * @param canvas
     */
    private void drawWave(Canvas canvas){
        if(clipPath==null){
            path=new Path();
            clipPath=new Path();
            //要裁剪的圆形画布,innerRadius是在xml文件中定义的内部的圆的半径
            //即波浪最终显示的范围
            clipPath.addCircle(centerX,centerY,innerRadius, Path.Direction.CCW);
        }
        canvas.save();
        //裁剪画布在圆形的画布上绘制曲线
        canvas.clipPath(clipPath);
        path.reset();
        //默认progress=0,也就是从-waveWidth处开始绘制,多绘制了一个波纹的长度用于后边的移动
        curX=centerX-innerRadius-waveWidth*(-progress);
        curY=startY-wholeMoveY*(curProgress*f/maxProgress);
        path.moveTo(curX,curY);
        for (float i=-waveWidth;i<centerY+innerRadius+waveWidth;i+=waveWidth){
            path.rQuadTo(waveWidth/,waveHight,waveWidth/,);
            path.rQuadTo(waveWidth/,-waveHight,waveWidth/,);
        }
        path.lineTo(getWidth(),getHeight());
        path.lineTo(,getHeight());
        path.close();
        canvas.drawPath(path,wavePaint);
        canvas.restore();
    }


    /**
     * 绘制波浪的背景
     * @param canvas
     */
    private void drawCircles(Canvas canvas){
        canvas.drawCircle(centerX,centerY,innerRadius,centerPaint);
        if (out==null){
            out=new RectF();
            out.left=centerX-innerRadius-outCircleWidth/;
            out.top=centerY-innerRadius-outCircleWidth/;
            out.right=centerX+innerRadius+outCircleWidth/;
            out.bottom=centerY+innerRadius+outCircleWidth/;
        }
    }


    public int getMaxProgress() {
        return maxProgress;
    }

    public void setMaxProgress(int maxProgress) {
        this.maxProgress = maxProgress;
    }

    public int getCurProgress() {
        return curProgress;
    }

    public void setCurProgress(int curProgress) {
        if (curProgress<)return;
        if (riseAnim!=null){
            riseAnim.cancel();
        }
        riseAnim=generAnim(curProgress,);
        riseAnim.start();
    }




    public void setWaveAnim(boolean run){
       if (waveAnim==null){
           waveAnim=ValueAnimator.ofFloat(,);
           waveAnim.setDuration();
           waveAnim.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
               @Override
               public void onAnimationUpdate(ValueAnimator animation) {
                   progress=animation.getAnimatedFraction();
                   invalidate();
               }
           });
           waveAnim.setInterpolator(new LinearInterpolator());
           //无限循环
           waveAnim.setRepeatCount(ValueAnimator.INFINITE);
       }
        if (run){
            if (!waveAnim.isRunning()){
                waveAnim.start();
            }
        }else {
            if (waveAnim.isRunning()){
                waveAnim.cancel();
            }
        }
    }


    /**
     *
     * @return
     */
    private ValueAnimator generAnim(int finalProgress,long du){
        double start=f*curProgress/maxProgress;
        double end=f*finalProgress/maxProgress;
        Log.i(TAG,"start:"+start+"   end:"+end+"  finalProgress:"+finalProgress+"  curProgress:"+curProgress);
        final ValueAnimator animator=ValueAnimator.ofFloat((float) start,(float)end);
        animator.setDuration(du);
        animator.setInterpolator(new AnticipateInterpolator());
        animator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
            @Override
            public void onAnimationUpdate(ValueAnimator animation) {
                percentage=(float)animation.getAnimatedValue();
                curProgress= (int)(maxProgress*percentage);
                Log.i(TAG,"curProgress:"+curProgress+"    animation.getAnimatedFraction()"+animation.getAnimatedFraction());
                postInvalidate();
            }
        });
        return animator;
    }

}
           
用法
 public void wave(View view){
        CircleWaveView waveView= (CircleWaveView) view;
        waveView.setCurProgress(i-=);
        waveView.setWaveAnim(true);
    }
           

继续阅读