SVG的使用

svg制作logo
M = moveto(M,X,Y):将画笔移动到指定的坐标位置
L = lineto(L,X,Y):画直线到指定的坐标位置
H = horizontal lineto(H,Y):画水平线到指定的Y坐标的位置
V = vertical lineto(V,Y)画垂直线到指定的Y坐标的位置

A = elliptical Arc(A RX,RY,XROTATION,FLAG1,FLAG2,X,Y):弧线。A RX,RY水平方向和垂直方向的半径,XROTATION水平偏移量的角度,FLAG2开口方向,0代表向上,1代表向下。FLAG1弧线是大弧线还是小弧线。


svg动画
定义一个属性动画
<objectAnimator
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="2000"
    android:propertyName="trimPathEnd"
    android:repeatCount="0"
    android:valueFrom="0"
    android:valueTo="1"

    android:valueType="floatType"/>


定义一个anim
 
<animated-vector xmlns:android="http://schemas.android.com/apk/res/android"           android:drawable="@drawable/ic_logo">
    <target
        android:name="logo"
        android:animation="@animator/anim_bar_fill" />

</animated-vector>


最后调用
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
            AnimatedVectorDrawable anim1=              (AnimatedVectorDrawable)getResources().getDrawable(R.drawable.anim);
            ImageView imageView= (ImageView) findViewById(R.id.logo);
            imageView.setImageDrawable(anim1);
            anim1.start();
        }
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值