значение ViewCompat.setOnApplyWindowInsetsListener(window.decorView.rootView, object: OnApplyWindowInsetsListener {
override fun onApplyWindowInsets(v: View?, insets: WindowInsetsCompat?): WindowInsetsCompat {
return insets!!
}
}) чтобы я не возвращал, statusbar и navigationbar исчезают?
protected fun setupToolbar(toolbar: ConstraintLayout) { toolbar.setOnApplyWindowInsetsListener { _, insets -> toolbar.setPaddingRelative(0, insets.systemWindowInsetTop, 0, 0) insets.consumeSystemWindowInsets() } ViewCompat.requestApplyInsets(toolbar)
Обсуждают сегодня