QH
Size: a a a
QH
د
V
f
.
QH
V
.
.
QH
GO
.
GO
V
a
a
S
S
override fun onScale(detector: ScaleGestureDetector?): Boolean {
detector?.let {
mScaleFactor *= detector.scaleFactor
mScaleFactor = Math.max(0.5f, Math.min(mScaleFactor, 1.0f))
val percent = (mScaleFactor * 10).roundToInt()
if (lastPercent != percent) {
layoutParams.width = point.x * percent / 10
windowManager.updateViewLayout(root, layoutParams)
}
lastPercent = percent
}
return true
}
S
E