PathAnimView

介绍:

用于做Path动画的自定义View。

运行效果:

使用说明:

相关博文:

实现详解:

http://blog.csdn.net/zxt0601/article/details/53040506

图片->SVG->Path的正确姿势 ,用法进阶:

http://blog.csdn.net/zxt0601/article/details/54018970

Step 1. 在项目根build.gradle文件中增加JitPack仓库依赖。

    allprojects {
        repositories {
            ...
            maven { url "https://jitpack.io" }
        }
    }

Step 2. Add the dependency

    dependencies {
            compile 'com.github.mcxtzhang:PathAnimView:V1.0.0'
    }

一 概述

最简单用法,给我一个path,我还你一个动画。

    <com.mcxtzhang.pathanimlib.PathAnimView
        android:id="@+id/pathAnimView1"
        android:layout_width="wrap_content"
        android:layout_height="60dp"
        android:background="@color/blue"
        android:padding="5dp"/>
    Path sPath = new Path();
    sPath.moveTo(0, 0);
    sPath.addCircle(40, 40, 30, Path.Direction.CW);
    pathAnimView1.setSourcePath(sPath);
已下载
0