自定义viewAndroid开发经验谈Android开发

PathMeasuer实现一个仿支付完成动画

2017-09-17  本文已影响179人  vison123

前言

Android中的path是一个非常重要的一个类,我想大家应该都知道通过path可以画出很多东西,但这只是仅限于能画几个简单的东西,如果想要定位任意一个给定Path的任意一个点的坐标,或者通过Path实现一些炫酷的动画,我们就必须要了解PathMeasure这个类,这个类真的是很强大的,可以做很多好看的矢量动画,当然前提是你熟练了解并运用这个类,今天我们就来了解一下这个类吧。
嘿嘿,先来看看用PathMeasure实现的一个简单的仿支付成功之后的一个动画demo吧。

Demo展示

pathview

PathMeasure介绍

构造方法

天干物燥,小心雷区,女施主小心点,男施主就算了,踩了就踩了吧

image.png

常用方法

boolean getSegment (float startD, float stopD, Path dst, boolean startWithMoveTo)

这是pathmeasure最重要的方法了,这个方法的意思,截取PathMeasure关联的path中的任何一个线段。
怎么样一条线段呢,在关联的path中起点是startD,终点是stopD,然后截取的线段存在dst这个变量中,你可以new 一个path当作这个变量,然后拿来用。这里有个雷区要注意一下,记住是

image.png

我放两张图就知道了。

image.png image.png

起点坐标由原来位置1变为位置2
就变成了这个样字的线段

image.png

硬件加速的Bug

由于硬件加速的问题,PathMeasure中的getSegment在讲Path添加到dst数组中时会被导致一些错误,这里有两个方法可以试一下

 @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        if (canvas.isHardwareAccelerated()) {
            setLayerType(View.LAYER_TYPE_SOFTWARE, null);
        }
        drawPayPath(canvas);
    }
//sucessPath添加两条线段
 Path successPath = new Path();
 PathMeasure mPathMeasure = new PathMeasure ();
 successPath.addPath(circlePath);
 successPath.addPath(rightPath);

 mPathMeasure.setPath(path, false);
 while (mPathMeasure.nextContour()) {
    Path dsts = new Path();
    float starts = 0f;
    float ends = mPathMeasure.getLength() * animatorValue;
    mPathMeasure.getSegment(starts, ends, dsts, true);
    canvas.drawPath(dsts, mPaint);
  }
measure.getPosTan(measure.getLength() * currentValue, pos, tan);        // 获取当前位置的坐标以及趋势
mMatrix.reset();                                                        // 重置Matrix
float degrees = (float) (Math.atan2(tan[1], tan[0]) * 180.0 / Math.PI); // 计算图片旋转角度
mMatrix.postRotate(degrees, mBitmap.getWidth() / 2, mBitmap.getHeight() / 2);   // 旋转图片
mMatrix.postTranslate(pos[0] - mBitmap.getWidth() / 2, pos[1] - mBitmap.getHeight() / 2);   // 将图片绘制中心调整到与当前点重合

然后再画上这个图片就行了。实现的就跟下面差不多。


基础知识差不多就说到这里了,下面说说这个demo

Demo讲解

<declare-styleable name="PayPathView">
        <attr name="stroke_width" format="dimension"></attr>
        <attr name="animator_duration" format="integer"></attr>
        <attr name="stroke_color" format="color"></attr>
        <attr name="paying_count" format="integer"/>
        <attr name="right_path_color" format="color"/>
        <attr name="error_path_color" format="color"/>
        <attr name="play_together" format="boolean"/>
        <attr name="auto_exit" format="boolean"></attr>
        <attr name="animator_type">
            <enum name="success_animator" value="0"/>
            <enum name="failure_animator" value="1"/>
        </attr>
</declare-styleable>

对应的意思在view代码里头有解释

    private int payingCountNums;//需要执行支付动画的总次数

    private int stroke_width;//画笔的宽度

    private int stroke_color;//画笔的颜色

    private int rightPathColor;//勾路径的颜色

    private int errorPathColor;//叉号路径的颜色

    private boolean isAutoExit;//是否播放退出动画,默认为false

    private boolean isPlayingTogether;//动画是否一起播放,默认为false

    private int animationDuration = 1000;//动画时间,默认为一秒

    private int animatorType = -1;//动画类型 0代表播放成功动画,1代表播放失败动画

/**
     * 支付状态枚举
     */
    public static enum payState {
        NONE,
        PAYING,
        SUCCESS,
        FAILURE,
        EXIT
    }

每个状态对应一个动画,通过状态来播放动画来绘画不同的path,可以控制不同的状态实现。自由的控制绘画哪条path。

/**
     * 初始化所有动画
     */
    private void initAnimation() {
        payingAnimation = ValueAnimator.ofFloat(0, 1).setDuration(animationDuration);
        successAnimation = ValueAnimator.ofFloat(0, 1).setDuration(animationDuration);
        failureAnimation = ValueAnimator.ofFloat(0, 1).setDuration(animationDuration);
        exitAnimation = ValueAnimator.ofFloat(1, 0).setDuration(animationDuration);

        payingAnimation.addListener(mAnimationListener);
        successAnimation.addListener(mAnimationListener);
        failureAnimation.addListener(mAnimationListener);
        exitAnimation.addListener(mAnimationListener);

        payingAnimation.addUpdateListener(mUpdateListener);
        successAnimation.addUpdateListener(mUpdateListener);
        failureAnimation.addUpdateListener(mUpdateListener);
        exitAnimation.addUpdateListener(mUpdateListener);
    }
/**
     * 初始化监听器
     */
    private void initListener() {
        mUpdateListener = new ValueAnimator.AnimatorUpdateListener() {
            @Override
            public void onAnimationUpdate(ValueAnimator animation) {
                animatorValue = (float) animation.getAnimatedValue();
                invalidate();
            }
        };
    }

可以看到我们是通过属性动画来控制绘画路径的长度的。取到相应比例值animatorValue,然后再invalidate一下,在onDraw方法计算要画的path的长度,这样就实现了动画效果。具体看代码吧,有注释,都比较简单。

<com.example.administrator.pathview.PayPathView
            android:id="@+id/serach"
            android:layout_width="200dp"
            android:layout_height="200dp"
            android:layout_marginLeft="20dp"
            app:animator_duration="1000"
            app:animator_type="success_animator"
            app:error_path_color="@color/colorAccent"
            app:paying_count="2"
            app:play_together="false"
            app:right_path_color="@color/gray"
            app:stroke_color="@color/white"
            app:stroke_width="6dp"/>

外部代码设置

   mPayPathView.setAnimatorType(0);//播放成功的动画
   mPayPathView.setSuccessColor(selectedColor);   //成功路径的颜色
   mPayPathView.setPlayingTogether(true);  //分段path是否一起播放                          
   mPayPathView.setAutoExit(true);//是否播放回退动画
   mPayPathView.start();//开始动画

结语

代码就说到这里了,代码说到这里了,里面都有详细的解释,思路还是比较简单易懂的。如果掌握这个例子,相信你对PathMeasure就有一定的了解了。掌握基础用法并不难,难的是要联想并应用到实际场景当中,代码的初衷不就是这样吗,这也是我们需要多想的要给方面,毕竟代码离不开生活。
源代码

上一篇下一篇

猜你喜欢

热点阅读