摘要:
Android动画有2种,一种是Tween Animation,另一种是Frame Animation,先说说Tween动画吧。 Tween动画是对视图对象中的内容进行一系列简单的转换,比如位置的移动,大小的缩放,旋转,透明度得变化等等。Tween动画可以写到一个xml文件中,就像定义布局文件一样,当然,也可以写到android代码中,不过推荐写到xml文件中,因为它具备的阅读性,可重用性大大超过了硬编码。xml文件放在工程的res/anim目录中,这个目录中要包含一个根元素,可以是<scale>,<translate>,<alpha>或者<rotat 阅读全文
摘要:
旋转补间动画 通过<rotate>标签可以定义旋转补间动画。下面的代码定义了一个标准的旋转补间动画。<rotatexmlns:android="http://schemas.android.com/apk/res/android" android:interpolator="@anim/linear_interpolator"android:fromDegrees="0" android:toDegrees="360"android:pivotX="50%"android:pi 阅读全文