我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android利用Camera实现中轴3D卡牌翻转效果

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Android利用Camera实现中轴3D卡牌翻转效果

在Android系统API中,有两个Camera类:

android.graphics.Camera android.hardware.Camera

第二个应用于手机硬件中的相机相关的操作,本文讲述的是利用第一个Camera类实现中轴3D转换的卡牌翻转效果,开始之前,先看一下Android系统中的坐标系:

对应于三维坐标系中的三个方向,Camera提供了三种旋转方法:

rotateX() rotateY() rotateX()

调用这三种方法,传入旋转角度参数,即可实现视图沿着坐标轴旋转的功能。本文的中轴3D旋转效果就是让视图沿着Y轴旋转的。

系统API Demos中已经为我们提供了一个非常好用的3D旋转动画的工具类:
Rotate3dAnimation.java:


package com.feng.androidtest;
import android.graphics.Camera;
import android.graphics.Matrix;
import android.util.Log;
import android.view.animation.Animation;
import android.view.animation.Transformation;

public class Rotate3dAnimation extends Animation {
 private final float mFromDegrees;
 private final float mToDegrees;
 private final float mCenterX;
 private final float mCenterY;
 private final float mDepthZ;
 private final boolean mReverse;
 private Camera mCamera;
 
 public Rotate3dAnimation(float fromDegrees, float toDegrees,
   float centerX, float centerY, float depthZ, boolean reverse) {
  mFromDegrees = fromDegrees;
  mToDegrees = toDegrees;
  mCenterX = centerX;
  mCenterY = centerY;
  mDepthZ = depthZ;
  mReverse = reverse;
 }
 @Override
 public void initialize(int width, int height, int parentWidth, int parentHeight) {
  super.initialize(width, height, parentWidth, parentHeight);
  mCamera = new Camera();
 }
 @Override
 protected void applyTransformation(float interpolatedTime, Transformation t) {
  final float fromDegrees = mFromDegrees;
  float degrees = fromDegrees + ((mToDegrees - fromDegrees) * interpolatedTime);
  final float centerX = mCenterX;
  final float centerY = mCenterY;
  final Camera camera = mCamera;
  final Matrix matrix = t.getMatrix();
  Log.i("interpolatedTime", interpolatedTime+"");
  camera.save();
  if (mReverse) {
   camera.translate(0.0f, 0.0f, mDepthZ * interpolatedTime);
  } else {
   camera.translate(0.0f, 0.0f, mDepthZ * (1.0f - interpolatedTime));
  }
  camera.rotateY(degrees);
  camera.getMatrix(matrix);
  camera.restore();
  matrix.preTranslate(-centerX, -centerY);
  matrix.postTranslate(centerX, centerY);
 }
}

可以看出, Rotate3dAnimation 总共做了两件事:在构造函数中赋值了旋转动画所需要的参数,以及重写(override)父类Animation中的applyTransformation()方法,下面分类阐述一下:

fromDegrees与toDegrees 视图旋转的开始角度和结束角度,当toDegree处于90倍数时,视图将变得不可见。 centerX与centerY 视图旋转的中心点。 depthZ Z轴移动基数,用于计算Camera在Z轴移动距离 reverse boolean类型,控制Z轴移动方向,达到视觉远近移动导致的视图放大缩小效果。 applyTransformation() 根据动画播放的时间 interpolatedTime (动画start到end的过程,interpolatedTime从0.0变化到1.0),让Camera在Z轴方向上进行相应距离的移动,实现视觉上远近移动的效果。然后调用 rotateX()方法,让视图围绕Y轴进行旋转,产生3D立体旋转效果。最后再通过Matrix来确定旋转的中心点的位置。

activity_main.xml布局文件:


<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:tools="http://schemas.android.com/tools"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:background="@android:color/white" >
 <Button
  android:id="@+id/btn_open"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:layout_margin="16dp"
  android:onClick="onClickView"
  android:text="打开"
  android:textColor="@android:color/black"
  android:textSize="16sp" />
 <RelativeLayout
  android:id="@+id/rl_content"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:layout_below="@id/btn_open"
  android:layout_marginTop="16dp" 
  android:background="@android:color/black">
  <ImageView
   android:id="@+id/iv_logo"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:contentDescription="@null"
   android:class="lazy" data-src="@drawable/ic_qrcode" 
   android:scaleType="centerInside"/>
  <TextView
   android:id="@+id/tv_desc"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:padding="16dp"
   android:text="编程网。"
   android:textColor="@android:color/white"
   android:textSize="18sp" 
   android:visibility="gone"/>
 </RelativeLayout>
</RelativeLayout>

布局中配置了卡牌正面的图片控件,卡牌背面的文本控件,以及他们的parent容器,也就是本文中的旋转动画的执行对象。

MainActivity.java文件:


package com.feng.androidtest;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.animation.AccelerateInterpolator;
import android.view.animation.Animation;
import android.view.animation.Animation.AnimationListener;
import android.view.animation.DecelerateInterpolator;
import android.widget.Button;
import android.widget.ImageView;
import android.widget.RelativeLayout;
import android.widget.TextView;
import com.example.androidtest.R;
public class MainActivity extends Activity {
 private RelativeLayout mContentRl;
 private ImageView mLogoIv;
 private TextView mDescTv;
 private Button mOpenBtn;
 private int centerX;
 private int centerY;
 private int depthZ = 400;
 private int duration = 600;
 private Rotate3dAnimation openAnimation;
 private Rotate3dAnimation closeAnimation;
 private boolean isOpen = false;
 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  mContentRl = (RelativeLayout) findViewById(R.id.rl_content);
  mLogoIv = (ImageView) findViewById(R.id.iv_logo);
  mDescTv = (TextView) findViewById(R.id.tv_desc);
  mOpenBtn = (Button) findViewById(R.id.btn_open);
 }
 
 private void initOpenAnim() {
  //从0到90度,顺时针旋转视图,此时reverse参数为true,达到90度时动画结束时视图变得不可见,
  openAnimation = new Rotate3dAnimation(0, 90, centerX, centerY, depthZ, true);
  openAnimation.setDuration(duration);
  openAnimation.setFillAfter(true);
  openAnimation.setInterpolator(new AccelerateInterpolator());
  openAnimation.setAnimationListener(new AnimationListener() {
   @Override
   public void onAnimationStart(Animation animation) {
   }
   @Override
   public void onAnimationRepeat(Animation animation) {
   }
   @Override
   public void onAnimationEnd(Animation animation) {
    mLogoIv.setVisibility(View.GONE);
    mDescTv.setVisibility(View.VISIBLE);
    //从270到360度,顺时针旋转视图,此时reverse参数为false,达到360度动画结束时视图变得可见
    Rotate3dAnimation rotateAnimation = new Rotate3dAnimation(270, 360, centerX, centerY, depthZ, false);
    rotateAnimation.setDuration(duration);
    rotateAnimation.setFillAfter(true);
    rotateAnimation.setInterpolator(new DecelerateInterpolator());
    mContentRl.startAnimation(rotateAnimation);
   }
  });
 }
 
 private void initCloseAnim() {
  closeAnimation = new Rotate3dAnimation(360, 270, centerX, centerY, depthZ, true);
  closeAnimation.setDuration(duration);
  closeAnimation.setFillAfter(true);
  closeAnimation.setInterpolator(new AccelerateInterpolator());
  closeAnimation.setAnimationListener(new AnimationListener() {
   @Override
   public void onAnimationStart(Animation animation) {
   }
   @Override
   public void onAnimationRepeat(Animation animation) {
   }
   @Override
   public void onAnimationEnd(Animation animation) {
    mLogoIv.setVisibility(View.VISIBLE);
    mDescTv.setVisibility(View.GONE);
    Rotate3dAnimation rotateAnimation = new Rotate3dAnimation(90, 0, centerX, centerY, depthZ, false);
    rotateAnimation.setDuration(duration);
    rotateAnimation.setFillAfter(true);
    rotateAnimation.setInterpolator(new DecelerateInterpolator());
    mContentRl.startAnimation(rotateAnimation);
   }
  });
 }
 public void onClickView(View v) {
  //以旋转对象的中心点为旋转中心点,这里主要不要再onCreate方法中获取,因为视图初始绘制时,获取的宽高为0
  centerX = mContentRl.getWidth()/2;
   centerY = mContentRl.getHeight()/2;
   if (openAnimation == null) {
   initOpenAnim();
   initCloseAnim();
  }
   //用作判断当前点击事件发生时动画是否正在执行
  if (openAnimation.hasStarted() && !openAnimation.hasEnded()) {
   return;
  }
  if (closeAnimation.hasStarted() && !closeAnimation.hasEnded()) {
   return;
  }
  //判断动画执行
  if (isOpen) {
   mContentRl.startAnimation(closeAnimation);
  }else {
   mContentRl.startAnimation(openAnimation);
  }
  isOpen = !isOpen;
  mOpenBtn.setText(isOpen ? "关闭" : "打开");
 }
}

代码中已对核心的地方做了注释解释,主要弄清楚 rotate3dAnimation构造参数中的 fromDegrees和toDegrees、depthZ、reverse参数,同时在动画中设置了速度插播器,如动画的前半程使用加速器 AccelerateInterpolator,后半程使用减速器 DecelerateInterpolator,使动画体验更加人性化。

您可能感兴趣的文章:Android实现图片反转、翻转、旋转、放大和缩小Android动画之3D翻转效果实现函数分析Android图片翻转动画简易实现代码Android实现Flip翻转动画效果Android实现文字翻转动画的效果Android实现卡片翻转动画Android使用animator实现fragment的3D翻转效果Android实现3D翻转动画效果android使用FlipAnimation实现3D垂直翻转动画


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android利用Camera实现中轴3D卡牌翻转效果

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Android利用Camera实现中轴3D卡牌翻转效果

在Android系统API中,有两个Camera类:android.graphics.Camera android.hardware.Camera第二个应用于手机硬件中的相机相关的操作,本文讲述的是利用第一个Camera类实现中轴3D转换的
2022-06-06

Unity中怎么利用Shader实现一个3D翻页效果

本篇文章给大家分享的是有关Unity中怎么利用Shader实现一个3D翻页效果,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。效果图:原理:Shader顶点动画在顶点着色器进行对
2023-06-20

利用CSS实现卡片翻转效果的方法和示例

在现代的网页设计中,翻转效果是一种常见且炫酷的特效,可以为网页增添一份动感和交互性。利用CSS的转换属性和动画属性,我们可以轻松地实现卡片的翻转效果。本文将介绍一种基础的卡片翻转效果,并提供具体的代码示例供读者参考。卡片翻转效果是指将卡片从
2023-10-21

如何在Android中利用TextSwitcher实现一个文字上下翻牌效果

今天就跟大家聊聊有关如何在Android中利用TextSwitcher实现一个文字上下翻牌效果,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。tvNotice = (TextSwitc
2023-05-31

怎么在android应用中利用ViewPager实现一个滑动翻页效果

这期内容当中小编将会给大家带来有关怎么在android应用中利用ViewPager实现一个滑动翻页效果,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。实现ViewPager的滑动翻页效果可以使用ViewPa
2023-05-31

怎么在Android应用中利用Bitmap实现一个位图旋转效果

怎么在Android应用中利用Bitmap实现一个位图旋转效果?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。位图的旋转也可以借助Matrix或者Canvas来实现。通过po
2023-05-31

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录