我正在尝试在活动中设置安全插图,如下所示:
@RequiresApi(Build.VERSION_CODES.Q)
override fun onAttachedToWindow() {
super.onAttachedToWindow()
val cutout = window.decorView.rootWindowInsets?.displayCutout
cutout?.safeInsetTop
cutout?.safeInsetBottom
cutout?.safeInsetLeft
cutout?.safeInsetRight
}
但是我似乎没有看到任何效果,这意味着我错误地实施了安全插入。我无法找到有关如何实施安全插图的适当文档。非常感谢有关如何在 android 上执行此操作的任何帮助。