diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/widget/StatusBarUnmannedView.kt b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/widget/StatusBarUnmannedView.kt index f98d50f773..a543dccb99 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/widget/StatusBarUnmannedView.kt +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/ui/widget/StatusBarUnmannedView.kt @@ -35,7 +35,7 @@ class StatusBarUnmannedView @JvmOverloads constructor( override fun onAttachedToWindow() { super.onAttachedToWindow() //添加view控制 - CallerHmiViewControlListenerManager.addListener(StatusBarView.TAG, this) + CallerHmiViewControlListenerManager.addListener(TAG, this) // 添加换肤监听 CallerSkinModeListenerManager.addListener(TAG, this) } @@ -63,7 +63,7 @@ class StatusBarUnmannedView @JvmOverloads constructor( override fun onDetachedFromWindow() { super.onDetachedFromWindow() - CallerHmiViewControlListenerManager.removeListener(StatusBarView.TAG) + CallerHmiViewControlListenerManager.removeListener(TAG) CallerSkinModeListenerManager.removeListener(TAG) } }