修复TTS逻辑

This commit is contained in:
董宏宇
2021-09-13 16:58:02 +08:00
parent 98f408d3f8
commit 3ee505378d
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();
}