1.Animation 动画类型

Android的animation由四种类型组成:

XML中

alph 渐变透明度动画效果
scale 渐变尺寸伸缩动画效果
translate 画面转换位置移动动画效果
rotate 画面转移旋转动画效果

 

 

 

 

 

JavaCode中

AlphaAnimation 渐变透明度动画效果
ScaleAnimation 渐变尺寸伸缩动画效果
TranslateAnimation 画面转换位置移动动画效果
RotateAnimation 画面转移旋转动画效果

 

 

 

 

 2.Android动画模式

Animation主要有两种动画模式:

一种是tweened animation(渐变动画)

XML中 JavaCode
alpha AlphaAnimation
scale ScaleAnimation

 

 

 

一种是frame by frame(画面转换动画)

XML中 JavaCode
translate TranslateAnimation
rotate RotateAnimation

 

 

 

3.如何在XML文件中定义动画

步骤如下:

①新建 Android 项目

在res目录中新建anim文件夹

在anim目录中新建一个my_anim.xml(注意文件名小写)

④在 my_anim.xml 加入动画代码

importandroid.app.Activity;importandroid.os.Bundle;importandroid.view.View;importandroid.view.View.OnClickListener;import android.view.animation.AlphaAnimation;import android.view.animation.Animation;importandroid.view.animation.AnimationSet;importandroid.view.animation.RotateAnimation;importandroid.view.animation.ScaleAnimation;import android.view.animation.TranslateAnimation;importandroid.widget.Button;importandroid.widget.ImageView;public class Animation1Activity extends Activity {    private Button rotateButton = null;    private Button scaleButton = null;    private Button alphaButton = null;    private Button translateButton = null;    private ImageView image = null;    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);               rotateButton = (Button)findViewById(R.id.rotateButton);        scaleButton = (Button)findViewById(R.id.scaleButton);        alphaButton = (Button)findViewById(R.id.alphaButton);        translateButton = (Button)findViewById(R.id.translateButton);        image = (ImageView)findViewById(R.id.image);             rotateButton.setOnClickListener(newRotateButtonListener());        scaleButton.setOnClickListener(newScaleButtonListener());        alphaButton.setOnClickListener(newAlphaButtonListener());        translateButton.setOnClickListener(           new TranslateButtonListener());    }    class AlphaButtonListener implementsOnClickListener{       public void onClick(View v) {           //创建一个AnimationSet对象,参数为Boolean型,           //true表示使用Animation的interpolator,false则是使用自己的           AnimationSet animationSet = new AnimationSet(true);           //创建一个AlphaAnimation对象,参数从完全的透明度,到完全的不透明           AlphaAnimation alphaAnimation = new AlphaAnimation(1, 0);           //设置动画执行的时间           alphaAnimation.setDuration(500);           //将alphaAnimation对象添加到AnimationSet当中           animationSet.addAnimation(alphaAnimation);           //使用ImageView的startAnimation方法执行动画           image.startAnimation(animationSet);       }    }    class RotateButtonListener implementsOnClickListener{       public void onClick(View v) {           AnimationSet animationSet = new AnimationSet(true);           //参数1:从哪个旋转角度开始           //参数2:转到什么角度           //后4个参数用于设置围绕着旋转的圆的圆心在哪里           //参数3:确定x轴坐标的类型,有ABSOLUT绝对坐标、RELATIVE_TO_SELF相对于自身坐标、RELATIVE_TO_PARENT相对于父控件的坐标           //参数4:x轴的值,0.5f表明是以自身这个控件的一半长度为x轴           //参数5:确定y轴坐标的类型           //参数6:y轴的值,0.5f表明是以自身这个控件的一半长度为x轴           RotateAnimation rotateAnimation = new RotateAnimation(0, 360,                  Animation.RELATIVE_TO_SELF,0.5f,                  Animation.RELATIVE_TO_SELF,0.5f);           rotateAnimation.setDuration(1000);           animationSet.addAnimation(rotateAnimation);           image.startAnimation(animationSet);       }    }    class ScaleButtonListener implementsOnClickListener{       public void onClick(View v) {           AnimationSet animationSet = new AnimationSet(true);           //参数1:x轴的初始值           //参数2:x轴收缩后的值           //参数3:y轴的初始值           //参数4:y轴收缩后的值           //参数5:确定x轴坐标的类型           //参数6:x轴的值,0.5f表明是以自身这个控件的一半长度为x轴           //参数7:确定y轴坐标的类型           //参数8:y轴的值,0.5f表明是以自身这个控件的一半长度为x轴           ScaleAnimation scaleAnimation = new ScaleAnimation(                  0, 0.1f,0,0.1f,                  Animation.RELATIVE_TO_SELF,0.5f,                  Animation.RELATIVE_TO_SELF,0.5f);           scaleAnimation.setDuration(1000);           animationSet.addAnimation(scaleAnimation);           image.startAnimation(animationSet);       }    }    class TranslateButtonListener implementsOnClickListener{       public void onClick(View v) {           AnimationSet animationSet = new AnimationSet(true);           //参数1~2:x轴的开始位置           //参数3~4:y轴的开始位置           //参数5~6:x轴的结束位置           //参数7~8:x轴的结束位置           TranslateAnimation translateAnimation =              new TranslateAnimation(                  Animation.RELATIVE_TO_SELF,0f,                  Animation.RELATIVE_TO_SELF,0.5f,                  Animation.RELATIVE_TO_SELF,0f,                  Animation.RELATIVE_TO_SELF,0.5f);           translateAnimation.setDuration(1000);           animationSet.addAnimation(translateAnimation);           image.startAnimation(animationSet);       }    }}
<?xml version="1.0" encoding="utf-8"?>              



更多相关文章

  1. Android时间转换星期 昨天 今天工具
  2. Android(安卓)Activity之间切换的各种效果
  3. Android(安卓)PopupWindow输入框弹起时被PopupWindow中的edit被
  4. Android(安卓)7.0以上(包含8.0), popupWindow弹窗位置异常, 解决
  5. 移动端常见坑(转载自互联网)
  6. 点击按钮 按钮缩放动画:
  7. android中的三种适配器
  8. Android中View跟随手指滑动效果的实例代码
  9. 【Android(安卓)UI】案例03滑动切换效果的实现(ViewPager)

随机推荐

  1. 小鹿又熬肝写了一份 Vue 2.0 核心原理!
  2. 《Python知识手册》更新V2.2版,添加 Plotl
  3. TensorFlow 实战多元线性回归问题
  4. 小鹿 | 谈谈我的三观!
  5. 深度学习中几种常用框架的介绍
  6. 零基础学习Python列表操作
  7. 这么用 if-else,小鹿差点被辞退!
  8. centos 用户权限管理与文件权限设定 详
  9. 60 天呕心沥血,我写完这本电子书!
  10. 鹿哥带读者做外包,它香吗?