SVG矢量图

http://iconfont.cn/   阿里矢量图库

https://www.online-convert.com/ 矢量图生成器网站

1、导依赖

compile 'com.eftimoff:android-pathview:1.0.8@aar'

2.布局
xmlns:app="http://schemas.android.com/apk/res-auto"

android:fitsSystemWindows="true"



3、控件

   PathView

注意:xml布局里面

<com.eftimoff.androipathview.PathView
    android:id="@+id/pw"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:pathColor="#00e2ff"
    app:pathWidth="2dp"
    app:svg="@raw/a9"/>//SVG图m     不能是大写


实现代码
1.获取控件
 2.pv.getPathAnimator()
                .delay(400)//几秒画一次
                .duration(4000)//画多久
                .listenerEnd(new PathView.AnimatorBuilder.ListenerEnd() {
                    @Override
                    //listenerEnd用这个方法控制此Activity跳转
                    public void onAnimationEnd() {
                        startActivity(new Intent(MainActivity.this, Main2Activity.class));
                    }
                })
                .interpolator(new AccelerateDecelerateInterpolator())


                .start();

猜你喜欢

转载自blog.csdn.net/csdn18510843580/article/details/81006200