From db32f5498d036f8fb80a5307b53ebb159369726d Mon Sep 17 00:00:00 2001 From: xuxinchao Date: Fri, 11 Oct 2024 16:07:27 +0800 Subject: [PATCH] =?UTF-8?q?[6.7.0]=E8=B0=83=E6=95=B4=E6=B6=88=E6=81=AF?= =?UTF-8?q?=E7=9B=92=E5=AD=90=E7=BA=A2=E7=82=B9=E6=98=BE=E7=A4=BA=EF=BC=8C?= =?UTF-8?q?=E5=BD=93=E6=89=93=E5=BC=80=E6=B6=88=E6=81=AF=E7=9B=92=E5=AD=90?= =?UTF-8?q?=E5=88=97=E8=A1=A8=E6=97=B6=E5=87=BA=E7=8E=B0=E6=96=B0=E7=9A=84?= =?UTF-8?q?=E6=B6=88=E6=81=AF=EF=BC=8C=E4=B8=8D=E5=87=BA=E7=8E=B0=E7=BA=A2?= =?UTF-8?q?=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/mogo/eagle/core/function/hmi/bone/BoneTabLayout.kt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/bone/BoneTabLayout.kt b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/bone/BoneTabLayout.kt index db741e45a1..711ead57c3 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/bone/BoneTabLayout.kt +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/bone/BoneTabLayout.kt @@ -3,6 +3,7 @@ package com.mogo.eagle.core.function.hmi.bone import android.content.Context import android.util.AttributeSet import android.view.LayoutInflater +import android.view.View import androidx.constraintlayout.widget.ConstraintLayout import com.mogo.eagle.core.function.api.datacenter.msgbox.IMsgBoxEventListener import com.mogo.eagle.core.function.call.msgbox.CallerMsgBoxEventListenerManager @@ -171,7 +172,9 @@ class BoneTabLayout @JvmOverloads constructor( override fun onUpdateTipEvent(isShow: Boolean) { super.onUpdateTipEvent(isShow) UiThreadHandler.post { - tabSwitchMsgBox.updateNotice(isShow) + if(msgBoxTabView.visibility == View.GONE){ + tabSwitchMsgBox.updateNotice(isShow) + } } } } \ No newline at end of file