Android 10 (API 29)에서 DialogFragment 사용 중 Fullscreen flag 적용이 안되는 현상

안녕하세요, 앱 개발 중 삼성 기기의 Android 10 이하에서 DialogFargment를 생성하며 WindowINsetsControllerCompat을 통해 Fullscreen을 지정하는 경우 DialogFragment 전환이 일어나는 과정에서 statusBar와 navigationBar가 SWIPE를 하지 않았음에도 계속 노출되는 현상이 있습니다.

pixel reference와 다른 제조사의 OS에서는 발생되지 않으며 삼성 기기도 Android 11 이상부터는 발생되지 않아 삼성 내에 확인된 이슈가 있는지 궁금합니다.

사용한 코드는 아래와 같습니다.

val insetsControllerCompat = WindowInsetsControllerCompat(window, window.decorView)
WindowCompat.setDecorFitsSystemWindows(window, false)

insetsControllerCompat.hide(WindowInsetsCompat.Type.statusBars() or WindowInsetsCompat.Type.navigationBars())
insetsControllerCompat.systemBarsBehavior =
WindowInsetsControllerCompat.BEHAVIOR_SHOW_TRANSIENT_BARS_BY_SWIPE

감사합니다.

Hi,
As the issue is happening only with Samsung devices, you can report this to Developer Support officially.
Here is the link: Developer Support | Samsung Developers
Do not forget to attach the issue details and dumpstate log.