欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Android高级动画篇之SVG矢量动画范例

程序员文章站 2022-06-16 21:25:27
目录效果视频目录结构svg常用指令初始化状态效果图制作静态svg图型动画变换动画黏合引用解决低版本异常问题效果视频目录结构svg常用指令l :为从当前点绘制到直线给定的点,后面跟着的为x,y坐标m :...

效果视频

Android高级动画篇之SVG矢量动画范例

目录结构

Android高级动画篇之SVG矢量动画范例

svg常用指令

l :为从当前点绘制到直线给定的点,后面跟着的为x,y坐标

m :为将画笔移动到某一点,但只是移动画笔,并没有绘制过程,所有没有产生绘制动作

a :为绘制一段弧线,允许弧线不闭合

初始化状态

效果图

Android高级动画篇之SVG矢量动画范例

制作静态svg图型

首先在drawablw目录中建立一个svg_pic.xml文件夹

分别给两条直线名为path1和path2

<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="200dp"
    android:height="200dp"
    android:viewportheight="100"
    android:viewportwidth="100">

    <group>
        <path
            android:name="path1"
            android:pathdata="
            m 20,80
            l 50,80 80,80"
            android:strokecolor="#cc0099"
            android:strokelinecap="round"
            android:strokewidth="5"/>

        <path
            android:name="path2"
            android:pathdata="
            m 20,20
            l 50,20 80,20"
            android:strokecolor="#cc0099"
            android:strokelinecap="round"
            android:strokewidth="5"/>
    </group>

</vector>

动画变换

在res目录下建立一个anim文件,在anim文件建立两个动画变化文件,分别为cross_anim1.xml和cross_anim2.xml
其中的valuefrom与valueto属性分别对应了变换的起始坐标

cross_anim1.xml

<?xml version="1.0" encoding="utf-8"?>
<set
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:ordering="sequentially">
    <objectanimator
        android:duration="500"
        android:propertyname="pathdata"
        android:valuefrom="m 20,80 l 50,80 80,80"
        android:valueto="m 20,80 l 50,50 80,80"
        android:valuetype="pathtype"
        android:interpolator="@android:anim/bounce_interpolator">
    </objectanimator>
</set>

cross_anim2.xml

<set
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:ordering="sequentially">
    <objectanimator
        android:duration="500"
        android:interpolator="@android:anim/bounce_interpolator"
        android:propertyname="pathdata"
        android:valuefrom="
            m 20,20
            l 50,20 80,20"
        android:valueto="
            m 20,20
            l 50,50 80,20"
        android:valuetype="pathtype"/>
</set>

动画黏合

最好通过animated-vector进行粘合,在drawable目录下创建link_anim.xml文件
drawable绑定svg静态图型的初始状态
target将两条直线的样式与变换进行绑定

<animated-vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:drawable="@drawable/svg_pic">
    <target android:name="path1" android:animation="@anim/cross_anim1"/>
    <target android:name="path2" android:animation="@anim/cross_anim2"/>
</animated-vector>

引用

<linearlayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".mainactivity">
    <imageview
        android:layout_gravity="center"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:srccompat="@drawable/link_anim"
        android:onclick="anim"/>
</linearlayout>
 public void anim(view view) {
        imageview imageview = (imageview)view;
        drawable drawable = imageview.getdrawable();
        if (drawable instanceof animatable){
            ((animatable)drawable).start();
        }
    }

解决低版本异常问题

在build.gradle文件的defaultconfig中添加如下语句

 vectordrawables.usesupportlibrary = true

到此这篇关于android高级动画篇之svg矢量动画范例的文章就介绍到这了,更多相关android 矢量动画内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!