diff options
Diffstat (limited to 'src/com/android/camera/ImageViewTouchBase.java')
-rw-r--r-- | src/com/android/camera/ImageViewTouchBase.java | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/com/android/camera/ImageViewTouchBase.java b/src/com/android/camera/ImageViewTouchBase.java index 84fb173..dfd0932 100644 --- a/src/com/android/camera/ImageViewTouchBase.java +++ b/src/com/android/camera/ImageViewTouchBase.java @@ -317,26 +317,6 @@ abstract class ImageViewTouchBase extends ImageView { center(true, true); } - protected void zoomTo(final float scale, final float centerX, - final float centerY, final float durationMs) { - final float incrementPerMs = (scale - getScale()) / durationMs; - final float oldScale = getScale(); - final long startTime = System.currentTimeMillis(); - - mHandler.post(new Runnable() { - public void run() { - long now = System.currentTimeMillis(); - float currentMs = Math.min(durationMs, now - startTime); - float target = oldScale + (incrementPerMs * currentMs); - zoomTo(target, centerX, centerY); - - if (currentMs < durationMs) { - mHandler.post(this); - } - } - }); - } - protected void zoomTo(float scale) { float cx = getWidth() / 2F; float cy = getHeight() / 2F; |