Animations的使用(五)

1 AnimationSet的使用方法

什么是AnimationSet

1 AnimationSet是Animation的子类

2 一个AnimationSet包含了一系列的Animation

3 针对AnimationSet设置一些Animation的常见属性(如StartOffset,duration等),可以被包含在AnimationSet当中的Animation继承

	AnimationSet animationSet = new AnimationSet(ture);
	AlpahaAnimation alpha = new AlphaAnimation(...);
	RotateAnimation rotate = new RotateAnimation(...);
	animationSet.addAnimation(alpha);
	animationSet.addAnimaion(rotate);
	animationSet.setDuration(2000);
	animationSet.setStartOffset(500);
	imageView.startAnimation(animationSet);


2 Interpolator的使用方法

Interpolator定义了动画变化速率,在Animations框架中定义了以下几种Interpolator



AccelerateDecelerateInterpolator:在动画开始和结束的地方速率变化较慢,中间的时候加速

AccelerateInterpolator:在动画开始的地方速率改变较慢,然后加速

CycleInterpolator:动画循环播放特定次数,速率改变沿正弦曲线

DecelerateInterpolator:在动画开始的地方速率改变较慢,然后减速

LinearInterpolator:以均匀的速率改变



设置的地方就在set标签中的 android:interpolator="@android:anim/accelerate_interpolator"

而之后还有一个android:shareInterpolator="true" 从名字就可以看到这是为set中所有的动画设置Interpolator

如果要单独设置 则将shareInterpolator设为false 然后为每个动画中单独定义Interpolator



以上是在xml中设置,如果要在代码中设置

animationSet.setInterpolator(new AccelerateInterpolator());(也可以单独设置)

注意在AnimationSet的构造方法中有一个boolean参数,这个参数就是shareInterpolator的设定



3 Frame-By-Frame Animations的使用方法

1 在res/drawable中创建一个xml文件,定义Animation的动画播放序列 anim_nv.xml

	<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
		android:oneshot="false">
		<item android:drawable="@drawable/nv1"
			android:duration="500" />
		<item android:drawable="@drawable/nv2"
			android:duration="500" />
		<item android:drawable="@drawable/nv3"
			android:duration="500" />
		<item android:drawable="@drawable/nv4"
			android:duration="500" />
	</animation-list>


2 为ImageView设置背景资源
	imageView.setBackgroundResource(R.drawable.anim_nv);


3 通过ImageView得到AnimationDrawable
	AnimationDrawable animationDrawable = (AnimationDrawable) imageView.getBackground();


4 执行动画
	animationDrawable.start();

你可能感兴趣的:(android,animation)