Android 卡片翻转效果使用的Cramre来完成

记录一下:

一个好用的3D旋转工具类

oid.graphics.Matrix;import android.util.Log;import android.view.animation.Animation;import android.view.animation.Transformation;/** * An animation that rotates the view on the Y axis between two specified angles. * This animation also adds a translation on the Z axis (depth) to improve the effect. */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;    /**     * Creates a new 3D rotation on the Y axis. The rotation is defined by its     * start angle and its end angle. Both angles are in degrees. The rotation     * is performed around a center point on the 2D space, definied by a pair     * of X and Y coordinates, called centerX and centerY. When the animation     * starts, a translation on the Z axis (depth) is performed. The length     * of the translation can be specified, as well as whether the translation     * should be reversed in time.     *     * @param fromDegrees the start angle of the 3D rotation     * @param toDegrees the end angle of the 3D rotation     * @param centerX the X center of the 3D rotation     * @param centerY the Y center of the 3D rotation     * @param reverse true if the translation should be reversed, false otherwise     */    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);    }}



         oid.graphics.Matrix;     import android.util.Log;     import android.view.animation.Animation;     import android.view.animation.Transformation;     /** * An animation that rotates the view on the Y axis between two specified angles. * This animation also adds a translation on the Z axis (depth) to improve the effect. */     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;     /** * Creates a new 3D rotation on the Y axis. The rotation is defined by its * start angle and its end angle. Both angles are in degrees. The rotation * is performed around a center point on the 2D space, definied by a pair * of X and Y coordinates, called centerX and centerY. When the animation * starts, a translation on the Z axis (depth) is performed. The length * of the translation can be specified, as well as whether the translation * should be reversed in time. * * @param fromDegrees the start angle of the 3D rotation * @param toDegrees the end angle of the 3D rotation * @param centerX the X center of the 3D rotation * @param centerY the Y center of the 3D rotation * @param reverse true if the translation should be reversed, false otherwise */     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); } }     作者:亦枫 链接:https://www.jianshu.com/p/153d9f31288d 來源:简书 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。      


         oid.graphics.Matrix;     import android.util.Log;     import android.view.animation.Animation;     import android.view.animation.Transformation;     /** * An animation that rotates the view on the Y axis between two specified angles. * This animation also adds a translation on the Z axis (depth) to improve the effect. */     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;     /** * Creates a new 3D rotation on the Y axis. The rotation is defined by its * start angle and its end angle. Both angles are in degrees. The rotation * is performed around a center point on the 2D space, definied by a pair * of X and Y coordinates, called centerX and centerY. When the animation * starts, a translation on the Z axis (depth) is performed. The length * of the translation can be specified, as well as whether the translation * should be reversed in time. * * @param fromDegrees the start angle of the 3D rotation * @param toDegrees the end angle of the 3D rotation * @param centerX the X center of the 3D rotation * @param centerY the Y center of the 3D rotation * @param reverse true if the translation should be reversed, false otherwise */     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); } }     作者:亦枫 链接:https://www.jianshu.com/p/153d9f31288d 來源:简书 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。      


         oid.graphics.Matrix;     import android.util.Log;     import android.view.animation.Animation;     import android.view.animation.Transformation;     /** * An animation that rotates the view on the Y axis between two specified angles. * This animation also adds a translation on the Z axis (depth) to improve the effect. */     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;     /** * Creates a new 3D rotation on the Y axis. The rotation is defined by its * start angle and its end angle. Both angles are in degrees. The rotation * is performed around a center point on the 2D space, definied by a pair * of X and Y coordinates, called centerX and centerY. When the animation * starts, a translation on the Z axis (depth) is performed. The length * of the translation can be specified, as well as whether the translation * should be reversed in time. * * @param fromDegrees the start angle of the 3D rotation * @param toDegrees the end angle of the 3D rotation * @param centerX the X center of the 3D rotation * @param centerY the Y center of the 3D rotation * @param reverse true if the translation should be reversed, false otherwise */     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); } }     作者:亦枫 链接:https://www.jianshu.com/p/153d9f31288d 來源:简书 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。          
         oid.graphics.Matrix;     import android.util.Log;     import android.view.animation.Animation;     import android.view.animation.Transformation;     /** * An animation that rotates the view on the Y axis between two specified angles. * This animation also adds a translation on the Z axis (depth) to improve the effect. */     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;     /** * Creates a new 3D rotation on the Y axis. The rotation is defined by its * start angle and its end angle. Both angles are in degrees. The rotation * is performed around a center point on the 2D space, definied by a pair * of X and Y coordinates, called centerX and centerY. When the animation * starts, a translation on the Z axis (depth) is performed. The length * of the translation can be specified, as well as whether the translation * should be reversed in time. * * @param fromDegrees the start angle of the 3D rotation * @param toDegrees the end angle of the 3D rotation * @param centerX the X center of the 3D rotation * @param centerY the Y center of the 3D rotation * @param reverse true if the translation should be reversed, false otherwise */     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); } }     作者:亦枫 链接:https://www.jianshu.com/p/153d9f31288d 來源:简书 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。      


更多相关文章

  1. Android不是一个商业成功的产品?
  2. 70个具有商业实战性的精品Android源码
  3. 我不是盘神!PanDownload 作者被抓捕,一代神器凉凉了!
  4. Requests库作者Kenneth Reitz的另一神作!虚拟环境及包管理工具Pip
  5. 从微信赞赏升级来谈谈公号作者的境况
  6. Redis为什么又引入了多线程?作者也逃不过“真香定理”?
  7. 如果作者是Post的作者那么做点什么?
  8. 如果有多个作者[重复],我怎么能阻止PHP显示该书两次
  9. 王家林最受欢迎的一站式云计算大数据和移动互联网解决方案课程 V

随机推荐

  1. Android(安卓)仿苹果自定义Dialog
  2. Android(安卓)-Okhttp框架 工具类
  3. 自定义View之温度计
  4. 使用Kotlin的Android(安卓)Toast
  5. 代码碎片
  6. 看看人家美国人的玩法
  7. 登录界面
  8. Log4J for android
  9. android in practice_Basic threading(si
  10. android ExpandableListActivity