Gerard Fowley
Gerard Fowley
Answer to original question by @mdpearce: First off, thank you Jason for this great widget, it was just what I needed when I needed it. I have been using gesture-imageview...
A few hours later... Setting lastScale in GestureImageViewTouchListener seems to do the trick. GestureImageView: ``` public void setTo(float newX, float newY, float newScale) { x = newX; y = newY;...
I was tempted to change setScale and setPostion to also work like this, but they are used internally in GestureImageView and I'd rather not cause breakage. Leads me to the...