看到很多人在问如何实现三维的翻转效果,所以今天在这里简单的给大家分析一下,其实在APIDemo中就有这样一个例子,那么我们就以其为例来学习Android中的翻转动画效果的实现,首先看一下运行效果如下图所示。

Android中并没有提供直接做3D翻转的动画,所以关于3D翻转的动画效果需要我们自己实现,那么我们首先来分析一下Animation 和 Transformation。

Animation动画的主要接口,其中主要定义了动画的一些属性比如开始时间,持续时间,是否重复播放等等。而Transformation中则包含一个矩阵和alpha值,矩阵是用来做平移,旋转和缩放动画的,而alpha值是用来做alpha动画的,要实现3D旋转动画我们需要继承自Animation类来实现,我们需要重载getTransformation和applyTransformation,在getTransformation中Animation会根据动画的属性来产生一系列的差值点,然后将这些差值点传给applyTransformation,这个函数将根据这些点来生成不同的Transformation。下面是具体实现:

  1. public class Rotate3dAnimation extends Animation {
  2. //开始角度
  3. private final float mFromDegrees;
  4. //结束角度
  5. private final float mToDegrees;
  6. //中心点
  7. private final float mCenterX;
  8. private final float mCenterY;
  9. private final float mDepthZ;
  10. //是否需要扭曲
  11. private final boolean mReverse;
  12. //摄像头
  13. private Camera mCamera;
  14. public Rotate3dAnimation(float fromDegrees, float toDegrees,
  15. float centerX, float centerY, float depthZ, boolean reverse) {
  16. mFromDegrees = fromDegrees;
  17. mToDegrees = toDegrees;
  18. mCenterX = centerX;
  19. mCenterY = centerY;
  20. mDepthZ = depthZ;
  21. mReverse = reverse;
  22. }
  23. @Override
  24. public void initialize(int width, int height, int parentWidth, int parentHeight) {
  25. super.initialize(width, height, parentWidth, parentHeight);
  26. mCamera = new Camera();
  27. }
  28. //生成Transformation
  29. @Override
  30. protected void applyTransformation(float interpolatedTime, Transformation t) {
  31. final float fromDegrees = mFromDegrees;
  32. //生成中间角度
  33. float degrees = fromDegrees + ((mToDegrees - fromDegrees) * interpolatedTime);
  34. final float centerX = mCenterX;
  35. final float centerY = mCenterY;
  36. final Camera camera = mCamera;
  37. final Matrix matrix = t.getMatrix();
  38. camera.save();
  39. if (mReverse) {
  40. camera.translate(0.0f, 0.0f, mDepthZ * interpolatedTime);
  41. } else {
  42. camera.translate(0.0f, 0.0f, mDepthZ * (1.0f - interpolatedTime));
  43. }
  44. camera.rotateY(degrees);
  45. //取得变换后的矩阵
  46. camera.getMatrix(matrix);
  47. camera.restore();
  48. matrix.preTranslate(-centerX, -centerY);
  49. matrix.postTranslate(centerX, centerY);
  50. }
  51. }

其中包括了旋转的开始和结束角度,中心点、是否扭曲、和一个Camera,这里我们主要分析applyTransformation函数,其中第一个参数就是通过getTransformation函数传递的差指点,然后我们根据这个差值通过线性差值算法计算出一个中间角度degrees,Camera类是用来实现绕Y轴旋转后透视投影的,因此我们首先通过t.getMatrix()取得当前的矩阵,然后通过camera.translate来对矩阵进行平移变换操作,camera.rotateY进行旋转。这样我们就可以很轻松的实现3D旋转效果了,该例子的原意是通过一个列表来供用户选择要实现翻转的图像,所以我们分析至少需要定义两个控件:ListView和ImageView(要翻转的图像),主界面的xml布局定义如下所示。

  1. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:id="@+id/container"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent">
  5. <ListView
  6. android:id="@android:id/list"
  7. android:persistentDrawingCache="animation|scrolling"
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:layoutAnimation="@anim/layout_bottom_to_top_slide" />
  11. <ImageView
  12. android:id="@+id/picture"
  13. android:scaleType="fitCenter"
  14. android:layout_width="match_parent"
  15. android:layout_height="match_parent"
  16. android:visibility="gone" />
  17. </FrameLayout>

然后准备好需要的资源,在onCreate函数中准备好ListView和ImageView,因为要旋转所以我们需要保存视图的缓存信息,通过setPersistentDrawingCache(ViewGroup.PERSISTENT_ANIMATION_CACHE);可以设置该功能,当我们选择列表中的图像资源后在onItemClick中将选择的资源Id对应的图像设置到ImageView中,然后通过applyRotation来启动一个动画,前面有了Rotate3dAnimation的实现,我们要完成3D翻转动画就很简单,直接构建一个Rotate3dAnimation对象,设置其属性(包括动画监听),这里将动画的监听设置为DisplayNextView,可以用来显示下一个视图,在其中的动画结束监听(onAnimationEnd)中,通过一个县城SwapViews来交换两个画面,交换过程则是设置ImageView和ListView的显示相关属性,并构建一个Rotate3dAnimation对象,对另一个界面进行旋转即可,然后启动动画,整个转换过程实际上就是将第一个界面从0度转好90度,然后就爱你过第二个界面从90度转到0度,这样就形成了一个翻转动画,完整代码如下,我们也加入了一些必要的注解,大家也可以参考APIDemo中的Transition3d例子。

  1. public class Transition3d extends Activity implements
  2. AdapterView.OnItemClickListener, View.OnClickListener {
  3. //照片列表
  4. private ListView mPhotosList;
  5. private ViewGroup mContainer;
  6. private ImageView mImageView;
  7. // 照片的名字,用于显示在list中
  8. private static final String[] PHOTOS_NAMES = new String[] {
  9. "Lyon",
  10. "Livermore",
  11. "Tahoe Pier",
  12. "Lake Tahoe",
  13. "Grand Canyon",
  14. "Bodie"
  15. };
  16. // 资源id
  17. private static final int[] PHOTOS_RESOURCES = new int[] {
  18. R.drawable.photo1,
  19. R.drawable.photo2,
  20. R.drawable.photo3,
  21. R.drawable.photo4,
  22. R.drawable.photo5,
  23. R.drawable.photo6
  24. };
  25. @Override
  26. protected void onCreate(Bundle savedInstanceState) {
  27. super.onCreate(savedInstanceState);
  28. setContentView(R.layout.animations_main_screen);
  29. mPhotosList = (ListView) findViewById(android.R.id.list);
  30. mImageView = (ImageView) findViewById(R.id.picture);
  31. mContainer = (ViewGroup) findViewById(R.id.container);
  32. // 准备ListView
  33. final ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
  34. android.R.layout.simple_list_item_1, PHOTOS_NAMES);
  35. mPhotosList.setAdapter(adapter);
  36. mPhotosList.setOnItemClickListener(this);
  37. // 准备ImageView
  38. mImageView.setClickable(true);
  39. mImageView.setFocusable(true);
  40. mImageView.setOnClickListener(this);
  41. //设置需要保存缓存
  42. mContainer.setPersistentDrawingCache(ViewGroup.PERSISTENT_ANIMATION_CACHE);
  43. }
  44. /**
  45. * Setup a new 3D rotation on the container view.
  46. *
  47. * @param position the item that was clicked to show a picture, or -1 to show the list
  48. * @param start the start angle at which the rotation must begin
  49. * @param end the end angle of the rotation
  50. */
  51. private void applyRotation(int position, float start, float end) {
  52. // 计算中心点
  53. final float centerX = mContainer.getWidth() / 2.0f;
  54. final float centerY = mContainer.getHeight() / 2.0f;
  55. // Create a new 3D rotation with the supplied parameter
  56. // The animation listener is used to trigger the next animation
  57. final Rotate3dAnimation rotation =
  58. new Rotate3dAnimation(start, end, centerX, centerY, 310.0f, true);
  59. rotation.setDuration(500);
  60. rotation.setFillAfter(true);
  61. rotation.setInterpolator(new AccelerateInterpolator());
  62. //设置监听
  63. rotation.setAnimationListener(new DisplayNextView(position));
  64. mContainer.startAnimation(rotation);
  65. }
  66. public void onItemClick(AdapterView parent, View v, int position, long id) {
  67. // 设置ImageView
  68. mImageView.setImageResource(PHOTOS_RESOURCES[position]);
  69. applyRotation(position, 0, 90);
  70. }
  71. //点击图像时,返回listview
  72. public void onClick(View v) {
  73. applyRotation(-1, 180, 90);
  74. }
  75. /**
  76. * This class listens for the end of the first half of the animation.
  77. * It then posts a new action that effectively swaps the views when the container
  78. * is rotated 90 degrees and thus invisible.
  79. */
  80. private final class DisplayNextView implements Animation.AnimationListener {
  81. private final int mPosition;
  82. private DisplayNextView(int position) {
  83. mPosition = position;
  84. }
  85. public void onAnimationStart(Animation animation) {
  86. }
  87. //动画结束
  88. public void onAnimationEnd(Animation animation) {
  89. mContainer.post(new SwapViews(mPosition));
  90. }
  91. public void onAnimationRepeat(Animation animation) {
  92. }
  93. }
  94. /**
  95. * This class is responsible for swapping the views and start the second
  96. * half of the animation.
  97. */
  98. private final class SwapViews implements Runnable {
  99. private final int mPosition;
  100. public SwapViews(int position) {
  101. mPosition = position;
  102. }
  103. public void run() {
  104. final float centerX = mContainer.getWidth() / 2.0f;
  105. final float centerY = mContainer.getHeight() / 2.0f;
  106. Rotate3dAnimation rotation;
  107. if (mPosition > -1) {
  108. //显示ImageView
  109. mPhotosList.setVisibility(View.GONE);
  110. mImageView.setVisibility(View.VISIBLE);
  111. mImageView.requestFocus();
  112. rotation = new Rotate3dAnimation(90, 180, centerX, centerY, 310.0f, false);
  113. } else {
  114. //返回listview
  115. mImageView.setVisibility(View.GONE);
  116. mPhotosList.setVisibility(View.VISIBLE);
  117. mPhotosList.requestFocus();
  118. rotation = new Rotate3dAnimation(90, 0, centerX, centerY, 310.0f, false);
  119. }
  120. rotation.setDuration(500);
  121. rotation.setFillAfter(true);
  122. rotation.setInterpolator(new DecelerateInterpolator());
  123. //开始动画
  124. mContainer.startAnimation(rotation);
  125. }
  126. }
  127. }

转载于:https://blog.51cto.com/yarin/386219

Android\OPhone动画分析之翻转效果相关推荐

  1. android左右旋转动画效果图,Android新姿势:3D翻转效果原理

    首先,android里是没有3D翻转的动画效果的,但是呢,android有提供一个Camera的类,可以利用这个类来实现. 先看代码,Rotate3d是继承了Animation的一个动画类,多余的代码 ...

  2. Android翻转动画(卡片翻转效果)

    文章目录 前言 需求 一.先介绍三个插值器 二.实现步骤 1.效果图 2.布局 3.逻辑判断(是否隐藏) 4.翻转动画 5.bug出现 6.bug解决 三.源码 MainActivity.java a ...

  3. android 硬币翻转动画,使用Android标准动画显示正在翻转的硬币的两面

    我非常接近制作"硬币翻转"动画,但是由于当前动画系统的局限性(错误?) – 我无法找到一种方法来显示硬币在空中翻转的两侧. 例如,我有以下动画.XML: android:share ...

  4. android 星星流逝动画,Android Loading动画分析--续集

    上一篇写了DayNightLoading的代码流程及关键类,今天周末好好分析一下其中computeRender(float renderProgress)与draw(Canvas canvas, Re ...

  5. Android属性动画 监听器、翻转、暂停和恢复

    转载请标明出处:http://blog.csdn.net/zhaoyanjun6/article/details/118794419 本文出自[赵彦军的博客] 文章目录 监听器 addListener ...

  6. ANDROID开机动画分析

    开机动画文件:bootanimation.zip在system\media文件夹下 动画是由系列图片连续刷屏实现的.. bootanimation.zip文件是zip压缩文件,压缩方式要求是存储压缩, ...

  7. Android使用动画实现微信扫描线效果

    很多App都有扫描二维码功能,扫描的时候会有一个移动的扫描线,看起来很好实现,不过我网上搜了搜很多方法都是实时绘制出来的,计算点的位置然后重绘出来.我的第一感觉是完全没必要,其实这个东西本质上就是一张 ...

  8. android涟漪动画,如何添加涟漪效果并在android中的按钮上有自定义背景?

    请告诉我如何实现这两个目标,我已经解决了很多已经存在的问题,但他们并没有专门处理我的问题. 我想在我的按钮上产生涟漪效果,并且它应该是圆形的并且具有背景颜色.此外,我应该能够控制涟漪效果的颜色. 我尝 ...

  9. android 卡片旋转动画,Android 卡片翻转效果

    Android 卡片翻转效果使用的Cramre来完成 记录一下: 一个好用的3D旋转工具类 oid.graphics.Matrix; import android.util.Log; import a ...

最新文章

  1. P2396 yyy loves Maths VII 状压dp 变态卡常
  2. iis伪静态排除css_魔众系统伪静态规则怎么配
  3. 十二步创建你的第一个JavaScript库
  4. 【ECCV 2018】Facebook开发姿态转换模型,只需一张照片就能让它跳舞(视频)
  5. VTK:PolyData之Curvatures
  6. 转载:SVN插件的手动安装
  7. 项目部署服务器 jstl,Springboot集成jsp及部署服务器实现原理
  8. 最大公约数和最小公倍数问题(洛谷-P1029)
  9. ODrive踩坑(四)AS5047P-SPI绝对值磁编码器,不需每次上电校准无刷电机,直接上电可用
  10. php单例模式代码,php设计模式之单例模式代码
  11. vscode 运行 python
  12. zabbix3.0.4导入中文模板后乱码问题处理
  13. Axure9学习笔记1:介绍及安装
  14. ansys计算机热仿真,[计算机软件及应用]ansys热分析教程.ppt
  15. 计算机控制技术第二版答案于微波,微波技术习题答案 2.doc
  16. RNA-seq那些事儿
  17. 美团滑块(1-18,js逆向)
  18. EditPlus中文版+英文版+注册码下载
  19. 队残冒逃茸霞桥镭砸的
  20. 【总结】1457- 网页动画的十二原则

热门文章

  1. 你真的在正确地使用WLAN控制器吗?
  2. 31.水平居中总结-不定宽块状元素方法(三)
  3. yii 2.0 代码阅读 小记
  4. Eclipse 工作台用户指导视图和编辑器
  5. 恢复 outlook express中的附件按钮
  6. 数据湖三种方案的流行度调查
  7. 流式计算中为什么需要时间戳和WaterMark
  8. superset可视化-deck.gl Scatterplot与MapBox
  9. 5-8 离散点检测(改进版无error)
  10. Linux如何进入微服务看日志,Linux日志查找与服务器重启