-
-
Save skydoves/7209aa0daae1e5ac3bbaad42fe80e331 to your computer and use it in GitHub Desktop.
window_calculator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val wmc = WindowMetricsCalculator.getOrCreate() | |
val currentWM = wmc.computeCurrentWindowMetrics(this).bounds.flattenToString() | |
val maximumWM = wmc.computeMaximumWindowMetrics(this).bounds.flattenToString() | |
binding.metrics.text = "${currentWM}\n$maximumWM" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment