Android Open Source - tdpforce Zoom Animation






From Project

Back to project page tdpforce.

License

The source code is released under:

Apache License

If you think the Android project tdpforce listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/*
 * Copyright (c) 2012 Jason Polites/* w  ww .  j  a  va 2  s .  c om*/
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.polites.android;

import android.graphics.PointF;


/**
 * @author Jason Polites
 *
 */
public class ZoomAnimation implements Animation {

  private boolean firstFrame = true;
  
  private float touchX;
  private float touchY;
  
  private float zoom;
  
  private float startX;
  private float startY;
  private float startScale;
  
  private float xDiff;
  private float yDiff;
  private float scaleDiff;
  
  private long animationLengthMS = 200;
  private long totalTime = 0;
  
  private ZoomAnimationListener zoomAnimationListener;

  /* (non-Javadoc)
   * @see com.polites.android.Animation#update(com.polites.android.GestureImageView, long)
   */
  @Override
  public boolean update(GestureImageView view, long time) {
    if(firstFrame) {
      firstFrame = false;
      
      startX = view.getImageX();
      startY = view.getImageY();
      startScale = view.getScale();
      scaleDiff = (zoom * startScale) - startScale;
      
      if(scaleDiff > 0) {
        // Calculate destination for midpoint
        VectorF vector = new VectorF();
        
        // Set the touch point as start because we want to move the end        
        vector.setStart(new PointF(touchX, touchY));
        vector.setEnd(new PointF(startX, startY));        
      
        vector.calculateAngle();
        
        // Get the current length
        float length = vector.calculateLength();
        
        // Multiply length by zoom to get the new length
        vector.length = length*zoom;
        
        // Now deduce the new endpoint
        vector.calculateEndPoint();
        
        xDiff = vector.end.x - startX;
        yDiff = vector.end.y - startY;
      }
      else {
        // Zoom out to center
        xDiff = view.getCenterX() - startX;
        yDiff = view.getCenterY() - startY;
      }
    }
    
    totalTime += time;
    
    float ratio = (float) totalTime / (float) animationLengthMS;
    
    if(ratio < 1) {
      
      if(ratio > 0) {
        // we still have time left
        float newScale = (ratio * scaleDiff) + startScale;
        float newX = (ratio * xDiff) + startX;
        float newY = (ratio * yDiff) + startY;
        
        if(zoomAnimationListener != null) {
          zoomAnimationListener.onZoom(newScale, newX, newY);
        }
      }

      return true;
    }
    else {
      
      float newScale = scaleDiff + startScale;
      float newX = xDiff + startX;
      float newY = yDiff + startY;

      if(zoomAnimationListener != null) {
        zoomAnimationListener.onZoom(newScale, newX, newY);
        zoomAnimationListener.onComplete();
      }
      
      return false;
    }
  }
  
  public void reset() {
    firstFrame = true;
    totalTime = 0;
  }

  public float getZoom() {
    return zoom;
  }
  
  public void setZoom(float zoom) {
    this.zoom = zoom;
  }
  
  public float getTouchX() {
    return touchX;
  }
  
  public void setTouchX(float touchX) {
    this.touchX = touchX;
  }
  
  public float getTouchY() {
    return touchY;
  }
  
  public void setTouchY(float touchY) {
    this.touchY = touchY;
  }
  
  public long getAnimationLengthMS() {
    return animationLengthMS;
  }
  
  public void setAnimationLengthMS(long animationLengthMS) {
    this.animationLengthMS = animationLengthMS;
  }
  
  public ZoomAnimationListener getZoomAnimationListener() {
    return zoomAnimationListener;
  }
  
  public void setZoomAnimationListener(ZoomAnimationListener zoomAnimationListener) {
    this.zoomAnimationListener = zoomAnimationListener;
  }
}




Java Source Code List

com.etsy.android.grid.ClassLoaderSavedState.java
com.etsy.android.grid.ExtendableListView.java
com.etsy.android.grid.HeaderViewListAdapter.java
com.etsy.android.grid.StaggeredGridView.java
com.etsy.android.grid.util.DynamicHeightImageView.java
com.etsy.android.grid.util.DynamicHeightTextView.java
com.polites.android.Animation.java
com.polites.android.Animator.java
com.polites.android.FlingAnimationListener.java
com.polites.android.FlingAnimation.java
com.polites.android.FlingListener.java
com.polites.android.GestureImageViewListener.java
com.polites.android.GestureImageViewTouchListener.java
com.polites.android.GestureImageView.java
com.polites.android.MathUtils.java
com.polites.android.MoveAnimationListener.java
com.polites.android.MoveAnimation.java
com.polites.android.VectorF.java
com.polites.android.ZoomAnimationListener.java
com.polites.android.ZoomAnimation.java
com.readystatesoftware.systembartint.SystemBarTintManager.java
org.telugudesam.cadre.App.java
org.telugudesam.cadre.Config.java
org.telugudesam.cadre.Constants.java
org.telugudesam.cadre.activity.BaseTdpActivity.java
org.telugudesam.cadre.activity.ConversionCounterActivity.java
org.telugudesam.cadre.activity.ConversionRegistrationActivity.java
org.telugudesam.cadre.activity.PreviewActivity.java
org.telugudesam.cadre.activity.TdpMainActivity.java
org.telugudesam.cadre.adapters.DevelopmentCardsAdapter.java
org.telugudesam.cadre.components.MemCache.java
org.telugudesam.cadre.database.DbHelper.java
org.telugudesam.cadre.database.DbUtils.java
org.telugudesam.cadre.database.Tdp_cadre_boxFactory.java
org.telugudesam.cadre.fragments.DevelopmentCardsFragment.java
org.telugudesam.cadre.objects.DevelopmentCard.java
org.telugudesam.cadre.objects.Events.java
org.telugudesam.cadre.objects.Section.java
org.telugudesam.cadre.objects.dao.DevelopmentCardDao.java
org.telugudesam.cadre.objects.dao.DevelopmentCardTable.java
org.telugudesam.cadre.util.L.java
org.telugudesam.cadre.util.SystemUiHiderBase.java
org.telugudesam.cadre.util.SystemUiHiderHoneycomb.java
org.telugudesam.cadre.util.SystemUiHider.java
org.telugudesam.cadre.util.Utils.java