修复TTS逻辑并解决合并3ee50537时产生的冲突

This commit is contained in:
chenfufeng
2021-09-14 11:04:15 +08:00
parent c29f4e21b6
commit 63c64cb28e
10 changed files with 153 additions and 70 deletions

View File

@@ -20,7 +20,8 @@ interface IMoGoWaringProvider : IMogoModuleProvider {
v2xType: Int,
alertContent: String?,
ttsContent: String?,
tag: String?
tag: String?,
listener:WarningStatusListener?
)
/**

View File

@@ -0,0 +1,10 @@
package com.mogo.service.warning;
/**
* @author xiaoyuzhou
* @date 2021/9/13 4:41 下午
*/
public interface WarningStatusListener {
void onShow();
void onDismiss();
}