随着互联网技术的不断进步,android的vector图像的时代已经到来. 在google的最新支持库v23.2中, appcompat类已经使用vector图像, 使得aar包减少9%, 大约70kb, 惠及所有高版本的应用. 当然我们也可以使用vector, 瘦身应用. vector图像是svg格式在android的表现形式. svg图像适应屏幕, 图片较小, 还有很多优点, 参考.
关于vectors的分析, 主要分为两节:
(1) 使用svg图像瘦身应用, 参考.
本文是第二节, 关于vector动画.
sdk manager提示支持库更新
使用vector动画主要有三个部分: vector图像, 路径动画, animated-vector图像.
本文源码的github下载地址.
动画
1. vector图像
svg格式的图片, 转换为vector图像资源, 可以使用as2.0的转换工具, 也可以是在线转换工具, 参考. 图像需要路径(path)样式, 便于绘制, 如
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<vector xmlns:android= "http://schemas.android.com/apk/res/android"
android:width= "256dp"
android:height= "256dp"
android:viewportheight= "70"
android:viewportwidth= "70" >
<path
android:name= "heart1"
android:pathdata= "..."
android:strokecolor= "#e91e63"
android:strokewidth= "1" />
<path
android:name= "heart2"
android:pathdata= "..."
android:strokecolor= "#e91e63"
android:strokewidth= "1" />
</vector>
|
2. 路径动画
使用属性动画, 控制绘制状态.
1
2
3
4
5
6
7
8
|
<?xml version= "1.0" encoding= "utf-8" ?>
<objectanimator
xmlns:android= "http://schemas.android.com/apk/res/android"
android:duration= "6000"
android:propertyname= "trimpathend"
android:valuefrom= "0"
android:valueto= "1"
android:valuetype= "floattype" />
|
objectanimator的trimpathend属性决定绘制path的数量, 其余部分不会绘制, 其取值区间是0到1. duration属性表示持续时间, 6000即6秒.
3. animated-vector图像
把vector图像的路径(path), 应用于路径动画(objectanimator), 控制绘制.
1
2
3
4
5
6
7
8
9
10
11
|
<animated-vector
xmlns:android= "http://schemas.android.com/apk/res/android"
android:drawable= "@drawable/v_heard" >
<target
android:name= "heart1"
android:animation= "@animator/heart_animator" />
<target
android:name= "heart2"
android:animation= "@animator/heart_animator" />
...
</animated-vector>
|
4. 显示动画
需要android 5.0(21)以上版本, 才能使用vector动画, 即animatedvectordrawable类.
1
2
3
4
5
6
7
8
9
10
11
12
|
// 只支持5.0以上.
private void animateimage() {
if (build.version.sdk_int >= build.version_codes.lollipop) {
// 获取动画效果
animatedvectordrawable manimatedvectordrawable = (animatedvectordrawable)
contextcompat.getdrawable(getapplication(), r.drawable.v_heard_animation);
mivimageview.setimagedrawable(manimatedvectordrawable);
if (manimatedvectordrawable != null ) {
manimatedvectordrawable.start();
}
}
}
|
animatedvectordrawable的start方法就是动画启动功能.
使用vector动画比gif动画节省应用资源, 可以给用户更好的体验. 推荐一个有趣的svg库.
以上所述是小编给大家介绍的android中使用vectors(2)绘制优美的路径动画,希望对大家有所帮助!