[3.3.0] add func of demo view and rain view in main page ,plus union the sopview control ,and fix bug of chain

This commit is contained in:
zhongchao
2023-06-20 14:23:49 +08:00
parent 7a3cda73dd
commit 296be52760
15 changed files with 170 additions and 40 deletions

View File

@@ -7,6 +7,8 @@ interface IViewControlListener {
companion object{
const val TrafficLightView_TAG = "TrafficLightView_TAG"
const val LimitingVelocityView_TAG = "LimitingVelocityView_TAG"
const val FUNC_MODE_DEMO = "demoMode"
const val FUNC_MODE_RAIN = "rainMode"
}
/** --------- View --------- **/
@@ -36,4 +38,9 @@ interface IViewControlListener {
*/
fun updateStatusBarDownloadView(insert: Boolean, tag: String, progress: Int){}
/**
* 更新Func Mode
*/
fun updateFuncMode(tag:String, boolean: Boolean){}
}