[6.7.0][启自驾] feat: 增加启自驾父容器 View;

feat: 增驾调用 Och 自定义 view 接口&provider ;
This commit is contained in:
aibingbing
2024-09-19 15:11:06 +08:00
parent dfa8d8a644
commit 38a2bad999
8 changed files with 169 additions and 3 deletions

View File

@@ -0,0 +1,30 @@
package com.mogo.eagle.core.function.api.och
import android.content.Context
import android.view.View
import com.alibaba.android.arouter.facade.template.IProvider
/**
* @author aibingbing
*
* Och业务层自定义View Provider 接口定义
*/
interface IOchCustomViewProvider : IProvider {
/**
* Interface Tag
*/
val TAG: String
get() = "IOchCustomViewProvider"
/**
* 创建 Och业务层 自定义View
*/
fun createOchBusinessView(context: Context?): View?
/**
* 创建 自动自动驾驶 自定义 View
*/
fun createStartAutopilotView(context: Context?): View?
}