[6.7.0][启自驾] feat: 增加启自驾父容器 View;
feat: 增驾调用 Och 自定义 view 接口&provider ;
This commit is contained in:
@@ -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?
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user