This commit is contained in:
wangcongtao
2020-03-13 15:30:23 +08:00
parent fff573bc31
commit aca38576a5
14 changed files with 272 additions and 100 deletions

View File

@@ -141,9 +141,9 @@ public interface IMogoServiceApis extends IProvider {
IMogoADASController getAdasControllerApi();
/**
* 内容翻页
* 动作控制
*
* @return
*/
IMogoActionManager getFlipContentManager();
IMogoActionManager getActionManagerApi();
}

View File

@@ -66,6 +66,12 @@ public interface IMogoStatusManager extends IProvider {
*/
boolean isAppListUIShow();
/**
* 主页是否显示
* @return
*/
boolean isMainPageOnResume();
/**
* 设置小智语音UI状态
*
@@ -127,6 +133,13 @@ public interface IMogoStatusManager extends IProvider {
*/
void setAppListUIShow( String tag, boolean isShow );
/**
* 主页 resume 状态
* @param tag
* @param resume
*/
void setMainPageResumeStatus(String tag, boolean resume);
/**
* 注册监听
*

View File

@@ -46,5 +46,10 @@ public enum StatusDescriptor {
/**
* app 列表
*/
APP_LIST_UI;
APP_LIST_UI,
/**
* 主页 resume 状态
*/
MAIN_PAGE_RESUME;
}