[3.2.0] 修正车聊聊偶现的来电界面与等待接听界面重叠的情况

This commit is contained in:
renwj
2023-06-12 16:02:59 +08:00
parent af033bd736
commit 900a74c9ed

View File

@@ -405,6 +405,9 @@ internal class CallChatWindowManager {
}
private fun hide(view: View) {
if (view != null && view.visibility == View.VISIBLE) {
view.visibility = View.INVISIBLE
}
if (!ViewCompat.isAttachedToWindow(view)) {
return
}