diff options
Diffstat (limited to 'tests/VectorDrawableTest')
-rw-r--r-- | tests/VectorDrawableTest/res/anim/animation_favorite.xml | 30 | ||||
-rw-r--r-- | tests/VectorDrawableTest/res/anim/trim_path_animation02.xml | 2 |
2 files changed, 31 insertions, 1 deletions
diff --git a/tests/VectorDrawableTest/res/anim/animation_favorite.xml b/tests/VectorDrawableTest/res/anim/animation_favorite.xml index c81ba40..2e2d9bb 100644 --- a/tests/VectorDrawableTest/res/anim/animation_favorite.xml +++ b/tests/VectorDrawableTest/res/anim/animation_favorite.xml @@ -25,5 +25,35 @@ android:valueFrom="@string/round_box" android:valueTo="@string/heart" android:valueType="pathType" /> + <objectAnimator + android:duration="8000" + android:propertyName="fillAlpha" + android:repeatCount="-1" + android:valueFrom="1.0" + android:valueTo="0.0" /> + <objectAnimator + android:duration="8000" + android:propertyName="strokeAlpha" + android:repeatCount="-1" + android:valueFrom="1.0" + android:valueTo="0.0" /> + <objectAnimator + android:duration="8000" + android:propertyName="strokeColor" + android:repeatCount="-1" + android:valueFrom="#FF0000FF" + android:valueTo="#FF00FF00" /> + <objectAnimator + android:duration="8000" + android:propertyName="strokeWidth" + android:repeatCount="-1" + android:valueFrom="5" + android:valueTo="20" /> + <objectAnimator + android:duration="8000" + android:propertyName="fillColor" + android:repeatCount="-1" + android:valueFrom="#FFFF0000" + android:valueTo="#FF00FF00" /> </set>
\ No newline at end of file diff --git a/tests/VectorDrawableTest/res/anim/trim_path_animation02.xml b/tests/VectorDrawableTest/res/anim/trim_path_animation02.xml index 3bf2865..5d688cf 100644 --- a/tests/VectorDrawableTest/res/anim/trim_path_animation02.xml +++ b/tests/VectorDrawableTest/res/anim/trim_path_animation02.xml @@ -19,7 +19,7 @@ <objectAnimator android:duration="5000" - android:propertyName="fill" + android:propertyName="fillColor" android:valueFrom="#FF000000" android:valueTo="#FFFF0000"/> |