This commit is contained in:
wangcongtao
2020-02-26 12:40:03 +08:00
parent c8c903bf67
commit 57356211b1
15 changed files with 228 additions and 26 deletions

View File

@@ -60,6 +60,12 @@ public interface IMogoStatusManager extends IProvider {
*/
boolean isSearchUIShow();
/**
* APP 列表是否显示
* @return
*/
boolean isAppListUIShow();
/**
* 设置小智语音UI状态
*
@@ -114,6 +120,13 @@ public interface IMogoStatusManager extends IProvider {
*/
void setSearchUIShow( String tag, boolean isShow );
/**
* app 列表是否显示
* @param tag
* @param isShow
*/
void setAppListUIShow( String tag, boolean isShow );
/**
* 注册监听
*

View File

@@ -41,5 +41,10 @@ public enum StatusDescriptor {
/**
* 搜索页面
*/
SEARCH_UI;
SEARCH_UI,
/**
* app 列表
*/
APP_LIST_UI;
}