Rotating animation for android details

Source: Internet
Author: User

Rotating animation for android details


Flip Animation for Android:


Recently, a small animation was used in the project to make the object rotate in 3D. The record is as follows:


public class FlipAnimation extends Animation {    private Camera mCamera;    private View mFromView;    private View mToView;    private float mCenterX;    private float mCenterY;    private boolean mForward = true;    /**     * Creates a 3D flip animation between two views.     *     * @param fromView First view in the transition.     * @param toView Second view in the transition.     */    public FlipAnimation(View fromView, View toView) {        mFromView = fromView;        mToView = toView;        setDuration(700);        setFillAfter(false);        setInterpolator(new AccelerateDecelerateInterpolator());    }    public void reverse() {        mForward = false;        View switchView = mToView;        mToView = mFromView;        mFromView = switchView;    }    @Override    public void initialize(int width, int height, int parentWidth, int parentHeight) {        super.initialize(width, height, parentWidth, parentHeight);        mCenterX = width / 2;        mCenterY = height / 2;        mCamera = new Camera();    }    @Override    protected void applyTransformation(float interpolatedTime, Transformation t) {        final double radians = Math.PI * interpolatedTime;        float degrees = (float)(180.0 * radians / Math.PI);        if (interpolatedTime >= 0.5f) {            degrees -= 180.f;            mFromView.setVisibility(View.GONE);            mToView.setVisibility(View.VISIBLE);        }        if (mForward) {            degrees = -degrees;        }        final Matrix matrix = t.getMatrix();        mCamera.save();        mCamera.rotateY(degrees);        mCamera.getMatrix(matrix);        mCamera.restore();        matrix.preTranslate(-mCenterX, -mCenterY);        matrix.postTranslate(mCenterX, mCenterY);    }}


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.