I can zoom in and zoom out the image. But I want to zoom in the image , then zoom out. If the size of image is less than original size, it can't zoom out. How to limit the size of zoom out?
case MotionEvent.ACTION_MOVE:
if (mode == ZOOM) {
float newDist = spacing(event);
Log.d(TAG, "newDist=" + newDist);
if (newDist > 10f) {
matrix.set(savedMatrix);
float scale = newDist / oldDist;
scaleLevel=scale;
matrix.postScale(scale, scale, mid.x, mid.y);
}
matrix.postTranslate(event.getX() - start.x,
event.getY() - start.y);
}