Back to project page Android-Photo-Zoom.
The source code is released under:
Apache License
If you think the Android project Android-Photo-Zoom listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package uk.co.senab.photoview; /*from www. j a v a2 s.c o m*/ import android.view.animation.Animation; import android.view.animation.Transformation; public class PhotoAnimation extends Animation { @Override public void initialize(int width, int height, int parentWidth, int parentHeight) { super.initialize(width, height, parentWidth, parentHeight); } @Override protected void applyTransformation(float interpolatedTime, Transformation t) { super.applyTransformation(interpolatedTime, t); } }