Android编程中Tween动画和Frame动画实例分析
本文实例讲述了Android编程中Tween动画和Frame动画实现方法。分享给大家供大家参考,具体如下:
Animation主要有两种动画模式:Tween动画和Frame动画
Tween动画由四种类型组成
res目录下新建anim创建Tween.xml
<?xmlversion="1.0"encoding="utf-8"?> <setxmlns:android="http://schemas.android.com/apk/res/android"> <!--透明--> <alpha android:fromAlpha="1" android:toAlpha="0" android:duration="3000" /> <!--旋转--> <rotate android:fromDegrees="0" android:toDegrees="360" android:pivotX="50%" android:pivotY="50%" android:duration="3000" /> <!--缩放--> <scale android:fromXScale="1" android:fromYScale="1" android:toXScale="3" android:toYScale="3" android:pivotX="0" android:pivotY="0" android:duration="3000" /> <!--移动--> <translate android:fromXDelta="0" android:fromYDelta="0" android:toXDelta="50%p" android:toYDelta="50%p" android:duration="3000" /> </set>
以上每个动画效果可放在不同的xml文件中已方便查看效果
下边是Activity中调用动画
publicvoidonCreate(BundlesavedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
imageView=(ImageView)findViewById(R.id.img);
}
publicvoidonClick(Viewview){
Animationanimation=null;
switch(view.getId()){
caseR.id.alpha:
animation=AnimationUtils.loadAnimation(this,R.anim.alpha);
break;
caseR.id.scale:
animation=AnimationUtils.loadAnimation(this,R.anim.scale);
break;
caseR.id.translate:
animation=AnimationUtils.loadAnimation(this,R.anim.translate);
break;
caseR.id.rotate:
//animation=AnimationUtils.loadAnimation(this,R.anim.rotate);
//令一种方式JavaCode中创建RotateAnimation
animation=newRotateAnimation(0,180,RotateAnimation.RELATIVE_TO_SELF,0.5f,RotateAnimation.RELATIVE_TO_SELF,0.5f);
animation.setDuration(3000);
break;
caseR.id.all:
animation=AnimationUtils.loadAnimation(this,R.anim.Tween);
break;
}
//启动动画
imageView.startAnimation(animation);
}
Tween动画由四种类型组成
帧动画是有多张图片组成,多张图片循环。
示例:
Frame.xml
<?xmlversion="1.0"encoding="utf-8"?> <animation-listxmlns:android="http://schemas.android.com/apk/res/android"android:oneshot="false"> <itemandroid:drawable="@drawable/p1"android:duration="200"/> <itemandroid:drawable="@drawable/p2"android:duration="200"/> <itemandroid:drawable="@drawable/p3"android:duration="200"/> <itemandroid:drawable="@drawable/p4"android:duration="200"/> <itemandroid:drawable="@drawable/p5"android:duration="200"/> <itemandroid:drawable="@drawable/p6"android:duration="200"/> <itemandroid:drawable="@drawable/p7"android:duration="800"/> <itemandroid:drawable="@drawable/p8"android:duration="200"/> <itemandroid:drawable="@drawable/p9"android:duration="200"/> <itemandroid:drawable="@drawable/p10"android:duration="200"/> <itemandroid:drawable="@drawable/p11"android:duration="200"/> </animation-list>
main.xml
<?xmlversion="1.0"encoding="utf-8"?> <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@anim/frame" android:onClick="go" /> </LinearLayout>
Activity:
publicvoidgo(Viewview){
//获取ImageView
ImageViewimageView=(ImageView)view;
//获取ImageView上面的动画图片
AnimationDrawabledrawable=(AnimationDrawable)imageView.getDrawable();
//动画开始
drawable.start();
}
希望本文所述对大家Android程序设计有所帮助。