oppo手机的界面设计也是很漂亮的。在很多界面中使用了3D技术塑造出了大量华丽的效果。在蝴蝶解锁中使用了两个对称的三D变幻,宛如蝴蝶翅膀上美丽的花纹。在受到用户点击后,随风缓慢上下扇动,充满浪漫的动感色彩。这里只在技术角度做一些探索。

这个效果由两个子view合成,每个各占整个屏幕的一半。左边子view以右边界为旋转中心,手指向右滑动距离转为绕Y轴施转的角度,角度为正。右边子view以左边界为旋转中心,手指向左滑动距离转为绕Y轴旋转的角度,角度为负,这样恰好与x轴方向一致。这种效果经过转为,可以转为像两扇门一样开关,也是很有意思的。为了保证两个view的对称性,我这里使用一张图片,沿中线分割为两个view的背景。

可以使用函数Bitmap.createBitmap实现.

view的背景,LeftView.java:

 

package com.magcomm.lockscrenn;

import android.content.Context;
import android.content.res.Configuration;
import android.graphics.Bitmap;
import android.graphics.Camera;
import android.graphics.Canvas;
import android.graphics.Matrix;
import android.view.View; class LeftView extends View {
Bitmap leftbm = null;
public int g_r = 0;
private int scr_w = 0, scr_h = 0; public void refrashView(int gr) {
g_r = gr;
invalidate();
}
public LeftView(Context context) {
super(context);
} void setBitmap(Bitmap bm) {
leftbm = bm;
scr_w = bm.getWidth() * 2;
scr_h = bm.getHeight();
} @Override
protected void onConfigurationChanged(Configuration newConfig) {
// TODO Auto-generated method stub
super.onConfigurationChanged(newConfig);
} @Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
// TODO Auto-generated method stub
super.onMeasure(widthMeasureSpec, heightMeasureSpec); } @Override
protected void onLayout(boolean changed, int left, int top, int right,
int bottom) {
// TODO Auto-generated method stub
super.onLayout(changed, left, top, right, bottom);
} @Override
protected void onDraw(Canvas canvas) {
// TODO Auto-generated method stub
super.onDraw(canvas);
float deg = (g_r * 1.0f / scr_w) * 180;
if (deg >= 90) {
canvas.drawBitmap(leftbm, rotateY((int) deg), null); } else if (deg > 0) {
canvas.drawBitmap(leftbm, rotateY((int) deg), null);
// lv.bringToFront();
} else {
canvas.drawBitmap(leftbm, rotateY((int) 0), null);
}
} private int centerX = 0, centerY = 0;
// 转动的总距离,跟度数比例1:1
private int deltaX = 0, deltaY = 0;
// 图片宽度高度
private int bWidth, bHeight;
// 摄像机
private Camera mCamera = new Camera();
private Matrix mMatrix = new Matrix(); Matrix rotateXY(int degreeX, int degreeY) {
deltaX = degreeX;
deltaY = degreeY;
centerX = scr_w / 2;
centerY = scr_h / 2;
mCamera.save();
mCamera.rotateY(deltaY);
mCamera.rotateX(-deltaX);
mCamera.translate(0, 0, 0);
mCamera.getMatrix(mMatrix);
mCamera.restore();
// 以图片的中心点为旋转中心,如果不加这两句,就是以(0,0)点为旋转中心
mMatrix.preTranslate(-centerX, -centerY);
mMatrix.postTranslate(centerX, centerY);
// mCamera.save(); // postInvalidate();
return mMatrix;
} Matrix rotateY(int degreeY) {
return rotateXY(0, degreeY);
} }

右View的
代码RightView.java:

 

package com.magcomm.lockscrenn;

import android.content.Context;
import android.content.res.Configuration;
import android.graphics.Bitmap;
import android.graphics.Camera;
import android.graphics.Canvas;
import android.graphics.Matrix;
import android.view.View; class RightView extends View {
Bitmap rightbm = null;
public int g_r = 0;
private int scr_w = 0, scr_h = 0; public void refrashView(int gr) {
g_r = gr;
invalidate();
}
public RightView(Context context) {
super(context);
} void setBitmap(Bitmap bm) {
rightbm = bm;
scr_w = bm.getWidth() * 2;
scr_h = bm.getHeight();
} @Override
protected void onConfigurationChanged(Configuration newConfig) {
// TODO Auto-generated method stub
super.onConfigurationChanged(newConfig);
} @Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
// TODO Auto-generated method stub
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
} @Override
protected void onLayout(boolean changed, int left, int top, int right,
int bottom) {
// TODO Auto-generated method stub
super.onLayout(changed, left, top, right, bottom);
} @Override
protected void onDraw(Canvas canvas) {
// TODO Auto-generated method stub
super.onDraw(canvas);
float deg = (g_r * 1.0f / scr_w) * 180;
if (deg <= -90) {
canvas.drawBitmap(rightbm, rotateY2((int) deg), null);
} else if (deg < 0) {
canvas.drawBitmap(rightbm, rotateY2((int) deg), null);
// rv.bringToFront(); } else {
canvas.drawBitmap(rightbm, rotateY2(0), null);
}
} // 图片的中心点坐标
private int centerX = 0, centerY = 0;
// 转动的总距离,跟度数比例1:1
private int deltaX = 0, deltaY = 0;
// 图片宽度高度
private int bWidth, bHeight;
// 摄像机
private Camera mCamera = new Camera();
private Matrix mMatrix = new Matrix(); Matrix rotateXY2(int degreeX, int degreeY) {
deltaX = degreeX;
deltaY = degreeY;
centerX = scr_w / 2;
centerY = scr_h / 2;
mCamera.save();
mCamera.rotateY(deltaY);
mCamera.rotateX(-deltaX);
mCamera.translate(scr_w / 2, 0, 0);
mCamera.getMatrix(mMatrix);
mCamera.restore();
// 以图片的中心点为旋转中心,如果不加这两句,就是以(0,0)点为旋转中心
mMatrix.preTranslate(-centerX, -centerY);
mMatrix.postTranslate(centerX, centerY);
// mCamera.save(); // postInvalidate();
return mMatrix;
} Matrix rotateY2(int degreeY) {
return rotateXY2(0, degreeY);
}
}

下面代码是两个view的动画效果,手指放开时出现缓慢的上下的有衰减的扇动效果,宛如蝴蝶颤抖的翅膀。本来自己写了一个弹簧振子的模型,通过滑动距离转化为弹簧的能量波动,进而转化为扇动的初速度,加上弹簧的阻尼运动的衰减系数,使其做带负加速度的圆周运动。但运行效果不太满意,大概需要使用JNI来实现才能满足吧,后来采取了系统自带的动画实现。

int ani_index = 0;

	private void applyRotation(float start, float end, final View v) {
// 计算中心点
final float centerX = scr_w / 2.0f;
final float centerY = scr_h / 2.0f;
final Rotate3dAnimation rotation = new Rotate3dAnimation(start, end, 0,
0, 0, 0, 0, 0, centerX, centerY, true);
rotation.setDuration(500);
// rotation.setFillAfter(true);
rotation.setRepeatCount(1);
rotation.setRepeatMode(Animation.REVERSE);
// rotation.setFillAfter(true);
// rotation.setDetachWallpaper(true);
rotation.setInterpolator(new AnticipateInterpolator());
// 设置监听
rotation.setAnimationListener(new Animation.AnimationListener() {
public void onAnimationStart(Animation animation) {
} // 动画结束
public void onAnimationEnd(Animation animation) {
// tv.post(new SwapViews());
startAni(ani_index++);
} public void onAnimationRepeat(Animation animation) {
}
});
v.startAnimation(rotation);
} /**
*
* AccelerateDecelerateInterpolator 在动画开始与介绍的地方速率改变比较慢,在中间的时候加速
*
* AccelerateInterpolator 在动画开始的地方速率改变比较慢,然后开始加速
*
* AnticipateInterpolator 开始的时候向后然后向前甩
*
* AnticipateOvershootInterpolator 开始的时候向后然后向前甩一定值后返回最后的值
*
* BounceInterpolator 动画结束的时候弹起
*
* CycleInterpolator 动画循环播放特定的次数,速率改变沿着正弦曲线
*
* DecelerateInterpolator 在动画开始的地方快然后慢
*
* LinearInterpolator 以常量速率改变
*
* OvershootInterpolator 向前甩一定值后再回到原来位置
*
* @param start
* @param end
* @param v
* @param time
*/
private void applyRotation2(float start, float end, final View v, long time) {
// 计算中心点
final float centerX = scr_w / 2.0f;
final float centerY = scr_h / 2.0f;
final Rotate3dAnimation rotation = new Rotate3dAnimation(start, end, 0,
0, 0, 0, 0, 0, centerX, centerY, true);
rotation.setDuration(time);
// rotation.setFillAfter(true);
rotation.setRepeatCount(0);
rotation.setRepeatMode(Animation.REVERSE);
// rotation.setFillAfter(true);
// rotation.setDetachWallpaper(true);
rotation.setInterpolator(new LinearInterpolator());
// 设置监听
rotation.setAnimationListener(new Animation.AnimationListener() {
public void onAnimationStart(Animation animation) {
} // 动画结束
public void onAnimationEnd(Animation animation) {
// tv.post(new SwapViews());
startAni(ani_index++);
} public void onAnimationRepeat(Animation animation) {
}
});
v.startAnimation(rotation);
} void startAni(int index) {
// final int ani_deg1[][] = {{60, 0}, {40, 0}, {20, 0}};
// final int ani_deg1[][] = {{0, 60}, {0, 40}, {0, 20}};
final int ani_deg1[][] = { { 0, 80 }, { 80, 0 }, { 0, 60 }, { 60, 0 },
{ 0, 40 }, { 40, 0 } };
// final int ani_deg2[][] = {{-60, 0}, {-40, 0}, {-20, 0}};
final int ani_deg2[][] = { { 0, -80 }, { -80, 0 }, { 0, -60 },
{ -60, 0 }, { 0, -40 }, { -40, 0 } };
final int time[] = { 500, 500, 400, 400, 200, 200 };
if (index > 5) {
ani_index = 0;
} else {
if (u_x <= (scr_w / 2)) {
applyRotation2(ani_deg1[index][0], ani_deg1[index][1], lv,
time[index]);
} else {
applyRotation2(ani_deg2[index][0], ani_deg2[index][1], rv,
time[index]);
}
} }

在oppo的解锁效果中,view的背面加入了对窗口buffer的特殊处理。使我们能够看到一个打开新窗口的效果,如下图:

需要添加如下函数。这里调用了系统的隐藏函数Surface.screenshot,必须使用系统签名。加入系统app中才能使用。当然,也许你也可以使用反射实现。

publicBitmap getScreenBuffer()

{

DisplaymDisplay;

DisplayMetricsmDisplayMetrics;

MatrixmDisplayMatrix = new Matrix();

WindowManagermWindowManager = (WindowManager) mContext

.getSystemService(Context.WINDOW_SERVICE);

mDisplay= mWindowManager.getDefaultDisplay();

mDisplayMetrics= new DisplayMetrics();

mDisplay.getRealMetrics(mDisplayMetrics);

mDisplay.getRealMetrics(mDisplayMetrics);

float[]dims = { mDisplayMetrics.widthPixels,

mDisplayMetrics.heightPixels};

mlock= Surface.screenshot((int) dims[0], (int) dims[1]);

returnmlock;

}

有关oppo蝴蝶解锁的三D技术的更多相关文章

  1. 阿里云大数据三次技术突围:Greenplum、Hadoop和“飞天”

    阿里云大数据三次技术突围:Greenplum.Hadoop和"飞天"    对于企业来说,到底什么是云计算?相信很多企业都有这样的困惑,让我们一起回到这个原始的起点探讨究竟什么是云 ...

  2. ASP.NET MVC:多语言的三种技术处理策略

    ASP.NET MVC:多语言的三种技术处理策略 背景 本文介绍了多语言的三种技术处理策略,每种策略对应一种场景,这三种场景是: 多语言资源信息只被.NET使用. 多语言资源信息只被Javascrip ...

  3. 谈谈在DevOps实践中,感觉最重要的这三个技术……

    从国内众多DevOps实践中,我们能看到下面三个技术尤其重要和火热: 容器:容器从根本上解决了软件对环境的依懒性,解决了各个环境之间的差异问题:它可以加速部署的速度,提高部署的效率:降低部署的成本.容 ...

  4. 【转载】目前主流过滤XSS的三种技术

    目前主流过滤XSS的三种技术 过滤 过滤,顾名思义,就是将提交上来的数据中的敏感词汇直接过滤掉.例如对"<script>"."<a>". ...

  5. Java 基础入门随笔(1) JavaSE版——java语言三种技术架构

    1.java语言的三种技术架构: J2SE(java 2 Platform Standard Edition):标准版,是为开发普通桌面和商务应用程序提供的解决方案.该技术体系是其他两者的基础,可以完 ...

  6. ASP、JSP、PHP 三种技术比较

    目前,最常用的三种动态网页语言有ASP(Active Server Pages),JSP(JavaServer Pages),PHP (Hypertext Preprocessor). 简 介 : A ...

  7. Oracle用户解锁的三种办法及默认的用户与密码

    ORA-28000: the account is locked-的解决办法 2009-11-11 18:51 ORA-28000: the account is locked 第1步:使用PL/SQ ...

  8. Docker数据卷Volume实现文件共享、数据迁移备份(三)--技术流ken

    前言 前面已经写了两篇关于docker的博文了,在工作中有关docker的基本操作已经基本讲解完了.相信现在大家已经能够熟练配置docker以及使用docker来创建镜像以及容器了.本篇博客将会讲解如 ...

  9. [华三] IPv6技术白皮书(V1.00)

    IPv6技术白皮书(V1.00) http://www.h3c.com/cn/d_200802/605649_30003_0.htm H3C S7500E IPv6技术白皮书 关键词:IPv6,隧道 ...

随机推荐

  1. 请求接口获取到的数据其中出现null值,处理的时候导致了程序crash,解决方案如下:

    第一种方法是使用分类给字典添加一个类方法,将字典中的null值全部替换为空字符串,代码如下: .h文件代码: @interface NSDictionary (DeleteNull) + (id)ch ...

  2. quartz搭建与应用

    1.添加依赖 依赖包括Quartz和logback <dependencies> <dependency> <groupId>org.quartz-schedule ...

  3. 「OC」 继承

    一.基本用法 1.设计两个类Bird.Dog 1 // Bird的声明 2 @interface Bird : NSObject 3 { 4 @public 5 int weight; 6 } 7 - ...

  4. 字符串匹配算法(KMP)

    字符串匹配运用很广泛,举个简单例子,我们每天登QQ时输入账号和密码,大家有没有想过账号和密码是怎样匹配的呢?登录需要多长时间和匹配算法的效率有直接的关系. 首先理解一下前缀和后缀的概念: 给出一个问题 ...

  5. python 字典有序无序及查找效率,hash表

    刚学python的时候认为字典是无序,通过多次插入,如di = {}, 多次di['testkey']='testvalue' 这样测试来证明无序的.后来接触到了字典查找效率这个东西,查了一下,原来字 ...

  6. hdu 2814 快速求欧拉函数

    /** 大意: 求[a,b] 之间 phi(a) + phi(a+1)...+ phi(b): 思路: 快速求欧拉函数 **/ #include <iostream> #include & ...

  7. C陷阱与缺陷(二)

    第二章 语法陷阱 2.1 理解函数声明 (*(void(*)())0)();任何C变量的声明都由两部分组成:类型以及一组类似表达式的声明符.一旦我们知道了如何声明一个给定类型的变量,那么该类型的类型转 ...

  8. sorl6.0+jetty+mysql

    sorl6.0+jetty+mysql搭建solr服务 1.下载solr 官网:http://lucene.apache.org/solr/ v2.目录结构如下 v3.启动solr(默认使用jetty ...

  9. 从PyOpenCV到CV2

    安装cv2 http://hyry.dip.jp/files/opencv.zip 采用cv2重写的<Python科学计算>中的实例程序 读者可以在下面的页面中搜索“opencv”,并根据 ...

  10. wiki oi 1044 拦截导弹

    题目描述 Description 某国为了防御敌国的导弹袭击,发展出一种导弹拦截系统.但是这种导弹拦截系统有一个缺陷:虽然它的第一发炮弹能够到达任意的高度,但是以后每一发炮弹都不能高于前一发的高度.某 ...