android screen size

fun getScreenSize(context: Context): Size { val wm = context.getSystemService(Context.WINDOW_SERVICE) as WindowManager return if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.R) { val windowMetrics = wm.currentWindowMetrics val insets = windowMetrics.windowInsets .getInsetsIgnoringVisibility(WindowInsets.Type.systemBars()) val width = windowMetrics.bounds.wid..
黑炎竜
'android screen size' 태그의 글 목록