我想动画一个矢量绘图。
这是我的vectorDrawable(从svg转换,在此示例中简化):
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="888dp"
android:height="600dp"
android:viewportHeight="600"
android:viewportWidth="888">
<group
android:name="wheel"
android:pivotX="498.0"
android:pivotY="385.0"
android:rotation="0.0">
<path
android:fillColor="#BDEDFF"
android:pathData="M547.4,363.9l-23.7,6.7c-1.1-1.8-2.5-3.5-4-5l12-21.5c2.2-3.9,0.8-8.9-3.1-11.1c-3.9-2.2-8.9-0.8-11.1,3.1
l-12,21.5c-2-0.5-4.2-0.7-6.4-0.8l-6.7-23.7c-1.2-4.3-5.7-6.8-10-5.6c-4.3,1.2-6.8,5.7-5.6,10l6.7,23.7c-1.8,1.1-3.5,2.5-5,4
l-21.5-12c-3.9-2.2-8.9-0.8-11.1,3.1c-2.2,3.9-0.8,8.9,3.1,11.1l21.5,12c-0.5,2-0.7,4.2-0.8,6.4l-23.7,6.7c-4.3,1.2-6.8,5.7-5.6,10
c1,3.6,4.3,5.9,7.8,5.9c0.7,0,1.5-0.1,2.2-0.3l23.7-6.7c1.1,1.8,2.5,3.5,4,5l-12,21.5c-2.2,3.9-0.8,8.9,3.1,11.1c1.3,0.7,2.6,1,4,1
c2.9,0,5.6-1.5,7.1-4.2l12-21.5c2,0.5,4.2,0.7,6.4,0.8l6.7,23.7c1,3.6,4.3,5.9,7.8,5.9c0.7,0,1.5-0.1,2.2-0.3
c4.3-1.2,6.8-5.7,5.6-10l-6.7-23.7c1.8-1.1,3.5-2.5,5-4l21.5,12c1.3,0.7,2.6,1,4,1c2.8,0,5.6-1.5,7.1-4.2c2.2-3.9,0.8-8.9-3.1-11.1
l-21.5-12c0.5-2,0.7-4.2,0.8-6.4l23.7-6.7c4.3-1.2,6.8-5.7,5.6-10C556.2,365.1,551.7,362.6,547.4,363.9z"/>
</group>
</vector>
我的动画矢量绘图:
<?xml version="1.0" encoding="utf-8"?>
<animated-vector
xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/image_vect">
<target
android:name="wheel"
android:animation="@anim/wheel"/>
</animated-vector>
我的动画:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<objectAnimator
android:duration="1000"
android:propertyName="rotation"
android:startOffset="1000"
android:valueFrom="0"
android:valueTo="180"
android:valueType="floatType"/>
</set>
我的问题是startoffset:
如果
android:startOffset
为100,则动画同时在4.4和6.0上播放。很完美。如果
android:startOffset
为300,则动画不是在4.4上播放,而是在6.0上播放如果
android:startOffset
为500,则动画不会在4.4上播放,也不会在6.0上播放我做错什么了吗?
谢谢你的帮助!
ps:我的最终向量包含更多元素,我的动画包含更多步骤(右转,延迟后左转,然后…)。但这个简化版本足以显示我所面临的错误。
最佳答案
我发现startOffset
对于animatedvectorDrawables通常是有问题的,足够让我避免使用它。
另一种方法是包含所需长度的ObjectAnimator
,使属性保持在下一个起始值。在这种情况下:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:ordering="sequentially">
<objectAnimator
android:duration="1000"
android:propertyName="rotation"
android:valueFrom="0"
android:valueTo="0"
android:valueType="floatType"/>
<objectAnimator
android:duration="1000"
android:propertyName="rotation"
android:valueFrom="0"
android:valueTo="180"
android:valueType="floatType"/>
</set>