Kai's brain dump
Posted on August 12, 2021
Inside your Activity:
override fun onStart() {
val size = Point()
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.R) {
requireContext().display!!.getRealSize(size)
} else {
val windowManager = requireContext().getSystemService(Context.WINDOW_SERVICE) as WindowManager
windowManager.defaultDisplay.getRealSize(size)
}
size.x // Width
size.y // Height
}
💖 💪 🙅 🚩
Kai's brain dump
Posted on August 12, 2021
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.