Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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);
                 }
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.