Searched refs:targetScale (Results 1 – 1 of 1) sorted by relevance
952 float targetScale = zoomIn ? doubleTapZoomScale : minScale(); in doubleTapZoom() local954 setScaleAndCenter(targetScale, sCenter); in doubleTapZoom()956 …new AnimationBuilder(targetScale, sCenter).withInterruptible(false).withDuration(doubleTapZoomDura… in doubleTapZoom()958 …new AnimationBuilder(targetScale, sCenter, vFocus).withInterruptible(false).withDuration(doubleTap… in doubleTapZoom()2266 private float limitedScale(float targetScale) { in limitedScale() argument2267 targetScale = Math.max(minScale(), targetScale); in limitedScale()2268 targetScale = Math.min(maxScale, targetScale); in limitedScale()2269 return targetScale; in limitedScale()2912 private final float targetScale; field in SubsamplingScaleImageView.AnimationBuilder2923 this.targetScale = scale; in AnimationBuilder()[all …]