XML动画效果Android

时间:2016-07-13 09:54:07

标签: android android-animation

我是XML动画的新手,我正在研究动画视图,其中我遇到了术语

  android:fromXScale="0.0"
  android:fromYScale="0.0"
  android:toXScale="1.0"
  android:toYScale="1.0"

为什么使用这些术语?如何决定使用什么浮动值?

3 个答案:

答案 0 :(得分:1)

这些术语用于动画效果。就像你正在将一个对象从特定的X,Y坐标缩放到另一个。

1)fromXScale& fromYScale - 用于缩放对象的起始位置(起始X / Y大小偏移)

2)toXScale& toYScale - 用于缩放对象的结束位置(结束X / Y大小偏移)

参考链接 - https://developer.android.com/guide/topics/resources/animation-resource.html

希望它会有所帮助!

答案 1 :(得分:0)

我建议你阅读official documentation,它清楚地解释了如何设置浮动值。

文章摘录:

android:fromAlpha

浮动。开始不透明度偏移,其中0.0为透明,1.0为不透明

答案 2 :(得分:0)

enter image description here

从给定链接中阅读详细信息并了解其用法Full Link.