-
public interface SubsamplingScaleImageView.OnStateChangedListenerAn event listener, allowing activities to be notified of pan and zoom events. Initialisationand calls made by your code do not trigger events; touch events and animations do. Methods inthis listener will be called on the UI thread and may be called very frequently - yourimplementation should return quickly.
-
-
Method Summary
Modifier and Type Method Description abstract voidonScaleChanged(float newScale, int origin)The scale has changed. abstract voidonCenterChanged(PointF newCenter, int origin)The source center has been changed. -
-
Method Detail
-
onScaleChanged
abstract void onScaleChanged(float newScale, int origin)
The scale has changed. Use with getMaxScale and getMinScale to determinewhether the image is fully zoomed in or out.
- Parameters:
newScale- The new scale.origin- Where the event originated from - one of ORIGIN_ANIM, ORIGIN_TOUCH.
-
onCenterChanged
abstract void onCenterChanged(PointF newCenter, int origin)
The source center has been changed. This can be a result of panning or zooming.
- Parameters:
newCenter- The new source center point.origin- Where the event originated from - one of ORIGIN_ANIM, ORIGIN_TOUCH.
-
-
-
-