Animation从总体来说可以分为两类:

1.Tweened Animations:该类提供了旋转,移动,伸展,淡入淡出等效果

Tweened Animations也有四种类型:

1.     Alpha:淡入淡出效果

2.     Scale:缩放效果

3.     Rotate:旋转效果

4.     Translate:移动效果

设置动画有两种方式:在xml文件中或者在java代码中

在XML中设置动画效果步骤:

1.     在res文件夹下新建一个名为anim的文件夹

2.     创建xml文件,并首先加入set标签(set标签就相当于Java代码中的AnimationSet)

3.     在Set标签中加入alpha,scale,rotate,translate标签(相当于Java代码中的AlphaAnimation,ScaleAnimation,RotateAnimation,TranslateAnimation)

4.     在Java代码中使用AnimationUtils的loadAnimation方法来加载XML文件,并得到一个Animation对象

5.     使用控件的startAnimation()方法执行这个Animation对象

那么通用的属性:

  • android:duration:设置动画持续时间
  • android:fillAfter:如果fillAfter设为true,则动画执行后,控件将停留在动画结束的状态
  • android:fillBefore:如果fillBefore设为true,则动画执行后,控件将回到动画开始的状态
  • android:startOffset(long startOffset):设置动画执行之前等待的时间(单位:毫秒)
  • android:repeatCount(int repeatCount):设置动画重复的次数
  • android:interpolator:设置动画的变化速度,其值:

android:interpolator="@android:anim/accelerate_decelerate_interpolator":先加速,后减速

android:interpolator="@android:anim/accelerate_interpolator":加速

android:interpolator="@android:anim/decelerate_interpolator":减速

android:interpolator="@android:anim/cycle_Interpolator":动画循环播放特定次数,速率改变沿着正弦曲线

android:interpolator="@android:anim/linear_Interpolator":匀速

示例:

  1. 1.  <?xml version="1.0" encoding="utf-8"?>
  2. 2.  <set xmlns:android="http://schemas.android.com/apk/res/android"
  3. 3.      android:interpolator="@android:anim/accelerate_interpolator" >
  4. 4.
  5. 5.      <alpha
  6. 6.          android:duration="500"
  7. 7.          android:fromAlpha="1.0"
  8. 8.          android:startOffset="500"
  9. 9.          android:toAlpha="0.0" />
  10. 10.
  11. 11. </set>
1.	<?xml version="1.0" encoding="utf-8"?>
2. <set xmlns:android="http://schemas.android.com/apk/res/android"
3. android:interpolator="@android:anim/accelerate_interpolator" >
4.
5. <alpha
6. android:duration="500"
7. android:fromAlpha="1.0"
8. android:startOffset="500"
9. android:toAlpha="0.0" />
10.
11. </set>

rotate.xml

  1. 1.  <?xml version="1.0" encoding="utf-8"?>
  2. 2.  <set xmlns:android="http://schemas.android.com/apk/res/android"
  3. 3.      android:interpolator="@android:anim/accelerate_interpolator" >
  4. 4.
  5. 5.      <rotate
  6. 6.          android:duration="5000"
  7. 7.          android:fromDegrees="0"
  8. 8.          android:pivotX="50%"
  9. 9.          android:pivotY="50%"
  10. 10.         android:toDegrees="360" />
  11. 11.
  12. 12. </set>
1.	<?xml version="1.0" encoding="utf-8"?>
2. <set xmlns:android="http://schemas.android.com/apk/res/android"
3. android:interpolator="@android:anim/accelerate_interpolator" >
4.
5. <rotate
6. android:duration="5000"
7. android:fromDegrees="0"
8. android:pivotX="50%"
9. android:pivotY="50%"
10. android:toDegrees="360" />
11.
12. </set>

scale.xml

  1. 1.  <?xml version="1.0" encoding="utf-8"?>
  2. 2.  <set xmlns:android="http://schemas.android.com/apk/res/android"
  3. 3.      android:interpolator="@android:anim/accelerate_interpolator" >
  4. 4.
  5. 5.      <scale
  6. 6.          android:duration="2000"
  7. 7.          android:fromXScale="1.0"
  8. 8.          android:fromYScale="1.0"
  9. 9.          android:pivotX="50%"
  10. 10.         android:pivotY="50%"
  11. 11.         android:toXScale="0.0"
  12. 12.         android:toYScale="0.0" />
  13. 13.
  14. 14. </set>
1.	<?xml version="1.0" encoding="utf-8"?>
2. <set xmlns:android="http://schemas.android.com/apk/res/android"
3. android:interpolator="@android:anim/accelerate_interpolator" >
4.
5. <scale
6. android:duration="2000"
7. android:fromXScale="1.0"
8. android:fromYScale="1.0"
9. android:pivotX="50%"
10. android:pivotY="50%"
11. android:toXScale="0.0"
12. android:toYScale="0.0" />
13.
14. </set>

translate.xml

  1. 1.  <?xml version="1.0" encoding="utf-8"?>
  2. 2.  <set xmlns:android="http://schemas.android.com/apk/res/android"
  3. 3.      android:interpolator="@android:anim/accelerate_interpolator" >
  4. 4.
  5. 5.      <translate
  6. 6.          android:duration="2000"
  7. 7.          android:fromXDelta="50%"
  8. 8.          android:fromYDelta="0%"
  9. 9.          android:toXDelta="100%"
  10. 10.         android:toYDelta="100%" />
  11. 11.
  12. 12. </set>
1.	<?xml version="1.0" encoding="utf-8"?>
2. <set xmlns:android="http://schemas.android.com/apk/res/android"
3. android:interpolator="@android:anim/accelerate_interpolator" >
4.
5. <translate
6. android:duration="2000"
7. android:fromXDelta="50%"
8. android:fromYDelta="0%"
9. android:toXDelta="100%"
10. android:toYDelta="100%" />
11.
12. </set>

使用:

  1. case R.id.alphaButton:
  2. Animation alphaAnimation = AnimationUtils.loadAnimation(this, R.anim.alpha);
  3. mImageView.startAnimation(alphaAnimation);
  4. break;
  5. case R.id.scaleButton:
  6. Animation scaleAnimation = AnimationUtils.loadAnimation(this, R.anim.scale);
  7. mImageView.startAnimation(scaleAnimation);
  8. break;
  9. case R.id.rotateButton:
  10. Animation rotateAnimation = AnimationUtils.loadAnimation(this, R.anim.rotate);
  11. mImageView.startAnimation(rotateAnimation);
  12. break;
  13. case R.id.translateButton:
  14. Animation translateAnimation = AnimationUtils.loadAnimation(this, R.anim.translate);
  15. mImageView.startAnimation(translateAnimation);
  16. break;
case R.id.alphaButton:
Animation alphaAnimation = AnimationUtils.loadAnimation(this, R.anim.alpha);
mImageView.startAnimation(alphaAnimation);
break; case R.id.scaleButton:
Animation scaleAnimation = AnimationUtils.loadAnimation(this, R.anim.scale);
mImageView.startAnimation(scaleAnimation);
break; case R.id.rotateButton:
Animation rotateAnimation = AnimationUtils.loadAnimation(this, R.anim.rotate);
mImageView.startAnimation(rotateAnimation);
break; case R.id.translateButton:
Animation translateAnimation = AnimationUtils.loadAnimation(this, R.anim.translate);
mImageView.startAnimation(translateAnimation);
break;

java代码实现

Java代码中的通用属性:

  • setDuration(long durationMillis):设置动画持续事件(单位:毫秒)
  • setFillAfter(boolean fillAfter):如果fillAfter设为true,则动画执行后,控件将停留在动画结束的状态
  • setFillBefore(boolean fillBefore):如果fillBefore设为true,则动画执行后,控件将回到动画开始的状态
  • setStartOffset(long startOffset):设置动画执行之前等待的时间(单位:毫秒)
  • setRepeatCount(int repeatCount):设置动画重复的次数
  • setInterpolator(Interpolator i):设置动画的变化速度

setInterpolator(newAccelerateDecelerateInterpolator()):先加速,后减速

setInterpolator(newAccelerateInterpolator()):加速

setInterpolator(newDecelerateInterpolator()):减速

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

setInterpolator(new LinearInterpolator()):匀速

以及其他一些特定的动画效果

java代码

  1. case R.id.alphaButton:
  2. // 创建一个AnimationSet对象(AnimationSet是存放多个Animations的集合)
  3. AnimationSet animationSet = new AnimationSet(true);
  4. // 创建一个AlphaAnimation对象(参数表示从完全不透明到完全透明)
  5. AlphaAnimation alphaAnimation = new AlphaAnimation(1, 0);
  6. // 设置动画执行的时间(单位:毫秒)
  7. alphaAnimation.setDuration(1000);
  8. // 将AlphaAnimation对象添加到AnimationSet当中
  9. animationSet.addAnimation(alphaAnimation);
  10. // 使用ImageView的startAnimation方法开始执行动画
  11. mImageView.startAnimation(animationSet);
  12. break;
  13. case R.id.scaleButton:
  14. // 创建一个AnimationSet对象(AnimationSet是存放多个Animations的集合)
  15. animationSet = new AnimationSet(true);
  16. // 创建一个ScaleAnimation对象(以某个点为中心缩放)
  17. ScaleAnimation scaleAnimation = new ScaleAnimation(1, 0.1f, 1, 0.1f,
  18. Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
  19. // 设置动画执行之前等待的时间(单位:毫秒)
  20. scaleAnimation.setStartOffset(1000);
  21. // 设置动画执行的时间(单位:毫秒)
  22. scaleAnimation.setDuration(2000);
  23. // 如果fillAfter设为true,则动画执行后,控件将停留在动画结束的状态
  24. // 运行了一下发现以下奇怪的现象
  25. // scaleAnimation.setFillAfter(true);不会停留在动画结束的状态
  26. // animationSet.setFillAfter(true);则会停留在动画结束的状态
  27. animationSet.setFillAfter(true);
  28. // 将ScaleAnimation对象添加到AnimationSet当中
  29. animationSet.addAnimation(scaleAnimation);
  30. // 使用ImageView的startAnimation方法开始执行动画
  31. mImageView.startAnimation(animationSet);
  32. break;
  33. case R.id.rotateButton:
  34. // 创建一个AnimationSet对象(AnimationSet是存放多个Animations的集合)
  35. animationSet = new AnimationSet(true);
  36. // 创建一个RotateAnimation对象(以某个点为圆心旋转360度)
  37. RotateAnimation rotateAnimation = new RotateAnimation(0, 360,
  38. Animation.RELATIVE_TO_PARENT, 0.5f, Animation.RELATIVE_TO_PARENT, 0.25f);
  39. // 设置动画执行的时间(单位:毫秒)
  40. rotateAnimation.setDuration(5000);
  41. // 将RotateAnimation对象添加到AnimationSet当中
  42. animationSet.addAnimation(rotateAnimation);
  43. // 使用ImageView的startAnimation方法开始执行动画
  44. mImageView.startAnimation(animationSet);
  45. break;
  46. case R.id.translateButton:
  47. // 创建一个AnimationSet对象(AnimationSet是存放多个Animations的集合)
  48. animationSet = new AnimationSet(true);
  49. // 创建一个RotateAnimation对象(从某个点移动到另一个点)
  50. TranslateAnimation translateAnimation = new TranslateAnimation(
  51. Animation.RELATIVE_TO_SELF, 0f, Animation.RELATIVE_TO_SELF, 0.5f,
  52. Animation.RELATIVE_TO_SELF, 0f, Animation.RELATIVE_TO_SELF, 1.0f);
  53. // 设置动画执行的时间(单位:毫秒)
  54. translateAnimation.setDuration(1000);
  55. // 将TranslateAnimation对象添加到AnimationSet当中
  56. animationSet.addAnimation(translateAnimation);
  57. // 使用ImageView的startAnimation方法开始执行动画
  58. mImageView.startAnimation(animationSet);
  59. break;

Android中Animation 详细解读的更多相关文章

  1. Android BLE蓝牙详细解读

    代码地址如下:http://www.demodashi.com/demo/15062.html 随着物联网时代的到来,越来越多的智能硬件设备开始流行起来,比如智能手环.心率检测仪.以及各式各样的智能家 ...

  2. wemall app商城源码Android中ViewHolder详细解释

    1.ViewHolder的解释: (1).只是一个静态类,不是Android的API方法. (2).它的作用就在于减少不必要的调用findViewById,然后把对底下的控件引用存在ViewHolde ...

  3. 关于Android中Animation的停止【转载】

    转载自:http://blog.csdn.net/easonx1990/article/details/8231520 最近遇到一个需求,通过在GridView上改变焦点,并且GridView上每个i ...

  4. android中Animation动画的连续播放与播放完毕后停留在最后的状态

    我们做安卓应用的苦逼程序员们常常会需要用到Animation也就是动画.比如做地图功能的时候.我们在手机旋转时需要根据手机重力感应来调整地图的角度,让它上面的“北”一直指向地球的北面...好多人做动画 ...

  5. PHP中foreach详细解读

    oreach 语法结构提供了遍历数组的简单方式.foreach 仅能够应用于数组和对象,如果尝试应用于其他数据类型的变量,或者未初始化的变量将发出错误信息.有两种语法: foreach (array_ ...

  6. Android中apk动态载入技术研究(2)android插件化及实现

    了解了android中类载入的前期知识点后,来看看android中DexClassLoader详细的实现     详细载入流程例如以下:     宿主程序会到文件系统比方SD卡中去载入APK[1],然 ...

  7. Android中的GraphicBuffer同步机制-Fence

    Fence是一种同步机制,在Android里主要用于图形系统中GraphicBuffer的同步.那它和已有同步机制相比有什么特点呢?它主要被用来处理跨硬件的情况.尤其是CPU.GPU和HWC之间的同步 ...

  8. 详细解读Android中的搜索框(二)—— Search Dialog

    Search Dialog是提供搜索的控件之一,还有一个是上次小例子给出的searchView,关于SearchView的东西后面会说到.本次先从Search Dialog说起,让大家慢慢理解andr ...

  9. 深入Animation,在SurfaceView中照样使用Android—Tween Animation!

    第一类:Frame By Frame 帧动画( 不推荐游戏开发中使用)             所谓帧动画,就是顺序播放事先做好的图像,类似于放电影:             分析: 此种方式类似我之 ...

随机推荐

  1. Java NIO非阻塞理论学习

    Java NIO和阻塞IO的区别: 阻塞I/O在调用InputStream.read()方法时是阻塞的,它会一直等到数据到来时(或超时)才会返回:同样,在调用ServerSocket.accept() ...

  2. Mongoose简单学习笔记

    1.1 名词解释 Schema : 一种以文件形式存储的数据库模型骨架,不具备数据库的操作能力 Model : 由Schema发布生成的模型,具有抽象属性和行为的数据库操作对 Entity : 由Mo ...

  3. Android -----listView的属性大全

    http://www.cnblogs.com/zhengbeibei/archive/2013/03/29/2988814.html 01     <?xml version="1.0 ...

  4. java.io包详细解说

    转自:http://hzxdark.iteye.com/blog/40133 hzxdark的博客 我不知道各位是师弟师妹们学java时是怎样的,就我的刚学java时的感觉,java.io包是最让我感 ...

  5. BZOJ 1008 题解

    1008: [HNOI2008]越狱 Time Limit: 1 Sec  Memory Limit: 162 MBSubmit: 7845  Solved: 3359[Submit][Status] ...

  6. children和childNodes的区别

    children和childNodes 1,childNodes 属性,标准的,它返回指定元素的子元素集合,包括HTML节点,所有属性,文本.可以通过nodeType来判断是哪种类型的节点,只有当no ...

  7. java画图程序_图片用字母画出来_源码发布_版本二

    在上一个版本:java画图程序_图片用字母画出来_源码发布 基础上,增加了图片同比例缩放,使得大像素图片可以很好地显示画在Notepad++中. 项目结构: 运行效果1: 原图:http://imag ...

  8. Maven_dependencies 和 dependencyManagement 的区别

    今天我在配置 sellercenter 的接口测试环境的时候,发现一些依赖的写法不太一致: 比如有的依赖的<scope>是写在子项目中的 <dependencies> 下的&l ...

  9. mac 终端乱码

    我系统是英文的 export LANG=en_US.UTF-8export LC_ALL=en_US.UTF-8 中文的 export LANG=zh_CN.UTF-8 export LANG=en_ ...

  10. [CareerCup] 16.4 A Lock Without Deadlocks 无死锁的锁

    16.4 Design a class which provides a lock only if there are no possible deadlocks. 有很多方法可以避免死锁的发生,一个 ...