This commit is contained in:
wangcongtao
2020-04-23 10:42:12 +08:00
parent f5daf334d0
commit 9b89d58350
6 changed files with 126 additions and 37 deletions

View File

@@ -98,6 +98,13 @@ public interface IMogoStatusManager extends IProvider {
*/
boolean isDisplayOverview();
/**
* 是否在查看全程状态
*
* @return
*/
boolean isUploading();
/**
* 设置小智语音UI状态
*
@@ -196,6 +203,14 @@ public interface IMogoStatusManager extends IProvider {
*/
void setDisplayOverview( String tag, boolean display );
/**
* 设置展示全程状态
*
* @param tag
* @param uploading
*/
void setUploadingStatus( String tag, boolean uploading );
/**
* 注册监听
*

View File

@@ -69,5 +69,10 @@ public enum StatusDescriptor {
/**
* 展示全程
*/
DISPLAY_OVERVIEW;
DISPLAY_OVERVIEW,
/**
* 上报状态
*/
UPLOADING;
}