android: Fix touch input
This commit is contained in:
parent
f9197f4dae
commit
322ac1c20c
1 changed files with 4 additions and 2 deletions
|
@ -38,9 +38,11 @@ class FixedRatioSurfaceView @JvmOverloads constructor(
|
||||||
newWidth = width
|
newWidth = width
|
||||||
newHeight = (width / aspectRatio).roundToInt()
|
newHeight = (width / aspectRatio).roundToInt()
|
||||||
}
|
}
|
||||||
setMeasuredDimension(newWidth, newHeight)
|
val left = (width - newWidth) / 2;
|
||||||
|
val top = (height - newHeight) / 2;
|
||||||
|
setLeftTopRightBottom(left, top, left + newWidth, top + newHeight)
|
||||||
} else {
|
} else {
|
||||||
setMeasuredDimension(width, height)
|
setLeftTopRightBottom(0, 0, width, height)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue