Android ScaleAnimation

前端之家收集整理的这篇文章主要介绍了Android ScaleAnimation前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用ScaleAnimation每次点击来增加视图.在完成了fillAfter之后,我已经管理了动画的效果,但现在的问题是,动画总是从状态0开始(因为视图在 XML中定义) – 点击视图重新设置并激活动画到了第一个动画之后的状态.

动画在XML中定义:

<scale 
  xmlns:android="http://schemas.android.com/apk/res/android" 
  android:interpolator="@android:anim/accelerate_decelerate_interpolator" 
  android:fromXScale="1" 
  android:toXScale="1.5" 
  android:fromYScale="1" 
  android:toYScale="1.5" 
  android:pivotX="50%" 
  android:pivotY="50%" 
  android:duration="1000" 
  android:fillAfter="true" 
/>

解决方法

我通过不使用XML中定义的动画来解决这个问题,而是在做
anim = new ScaleAnimation(from,to,from,Animation.RELATIVE_TO_SELF,0.5f,0.5f);

并从每次需要调整/扩展它.我不太确定这是一个很好的事情,但表现很好.

原文链接:https://www.f2er.com/android/313138.html

猜你在找的Android相关文章