diff --git a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/bone/BoneTopStatusLayout.kt b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/bone/BoneTopStatusLayout.kt index 1599629c1e..099114c214 100644 --- a/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/bone/BoneTopStatusLayout.kt +++ b/core/function-impl/mogo-core-function-hmi/src/main/java/com/mogo/eagle/core/function/hmi/bone/BoneTopStatusLayout.kt @@ -39,7 +39,7 @@ class BoneTopStatusLayout @JvmOverloads constructor( kotlin.runCatching { startAutoPilotContainer?.also { container -> container.removeAllViews() - val view = CallerOchCustomViewManager.getAutopilotView(context) + val view = CallerOchCustomViewManager.getStartAutopilotView(context) Logger.d(TAG, "$view ${Thread.currentThread().name}") view?.also { container.addView(it) diff --git a/core/mogo-core-function-call/src/main/java/com/mogo/eagle/core/function/call/och/CallerOchCustomViewManager.kt b/core/mogo-core-function-call/src/main/java/com/mogo/eagle/core/function/call/och/CallerOchCustomViewManager.kt index 98a36cb4db..0efa2df3c7 100644 --- a/core/mogo-core-function-call/src/main/java/com/mogo/eagle/core/function/call/och/CallerOchCustomViewManager.kt +++ b/core/mogo-core-function-call/src/main/java/com/mogo/eagle/core/function/call/och/CallerOchCustomViewManager.kt @@ -32,7 +32,7 @@ object CallerOchCustomViewManager { /** * 创建 自动自动驾驶 自定义 View */ - fun getAutopilotView(context: Context?): View? { + fun getStartAutopilotView(context: Context?): View? { return ochCustomViewProviderApi?.createStartAutopilotView(context) } } \ No newline at end of file