view animation

时间:2024-07-27 12:36:14

动画分为

  • 帧动画    drawable animation
  • 补间动画 view animation
  • 属性动画  property animation

作用效果:

  • 加载信息时loading动画
  • activity切换动画
  • fragment切换动画
  • popwindow出现动画
  • dialog出现动画

补间动画 view animation: (转载:http://blog.****.net/sgx425021234/article/details/9195829)

AlphaAnimation:透明度(alpha)渐变效果,对应<alpha/>标签。

TranslateAnimation:位移渐变,需要指定移动点的开始和结束坐标,对应<translate/>标签。

ScaleAnimation:缩放渐变,可以指定缩放的参考点,对应<scale/>标签。

RotateAnimation:旋转渐变,可以指定旋转的参考点,对应<rotate/>标签。

AnimationSet:组合渐变,支持组合多种渐变效果,对应<set/>标签。