标签:
存放位置补间动画的xml文件是放在res/anim文件夹中的
帧动画中的xml文件是放在res/drawable文件夹中,不过也可以放置在res/anim/中
属性动画的xml文件是放在res/animator文件夹中,不过也可以放置在res/anim/中帧动画<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="true" ><itemandroid:drawable="@drawable/icon"android:duration="200"/><itemandroid:drawable="@drawable/ic_launcher"android:duration="200"/></animation-list>补间动画<?xml version="1.0" encoding="utf-8"?><set xmlns:android="http://schemas.android.com/apk/res/android" ><translateandroid:duration="2000"android:fromXDelta="-50%p"android:fromYDelta="0"android:repeatCount="1"android:repeatMode="reverse"android:toXDelta="50%p"android:toYDelta="0" ></translate></set>属性动画<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"android:ordering="sequentially" ><objectAnimatorandroid:duration="500"android:propertyName="rotationX"android:startOffset="0"android:valueFrom="0"android:valueTo="360" /><objectAnimatorandroid:duration="200"android:propertyName="scaleX"android:startOffset="700"android:valueFrom="1"android:valueTo="1.5" ><objectAnimatorandroid:duration="100"android:propertyName="alpha"android:startOffset="900"android:valueFrom="1"android:valueTo="0.2" /></objectAnimator></set>
标签:
原文地址:http://www.cnblogs.com/baiqiantao/p/5410787.html