Bottomsheetbehavior with gesture nav on 行为异常

Bottomsheetbehavior with gesture nav on behaves strangely

还有其他人在他们的应用程序中遇到底部 sheet 行为问题吗?特别是关于使用启用了手势导航的手机时的窥视高度?

我在我的应用程序中遇到了同样的问题,我使用自定义插入解决了它( Consuming insets manually)

override fun onViewCreated(view: View, savedInstanceState: Bundle?) {
...
        ViewCompat.setOnApplyWindowInsetsListener(binding.rootView) { _, insets ->
        val systemGestureInsets = insets.systemGestureInsets
        WindowInsetsCompat.Builder()
            .setSystemWindowInsets(insets.systemWindowInsets)
            .setSystemGestureInsets(systemGestureInsets).build()
    }
...
}