删除了apps应用列表模块
删除了back返回按钮模块

Signed-off-by: donghongyu <donghongyu@zhidaoauto.com>
This commit is contained in:
donghongyu
2021-12-17 17:11:21 +08:00
parent 29651691ba
commit ada4a5f7c9
865 changed files with 7 additions and 5786 deletions

View File

@@ -356,9 +356,6 @@ public class MainActivity extends MvpActivity<MainView, MainPresenter> implement
if (mCoverUpLayout.getVisibility() != View.VISIBLE) {
mServiceApis.getAdasControllerApi().showADAS();
}
if (mServiceApis.getLauncherApi() != null) {
mServiceApis.getLauncherApi().setFloatButtonVisible(false);
}
}
@Override
@@ -368,9 +365,6 @@ public class MainActivity extends MvpActivity<MainView, MainPresenter> implement
if (shouldCloseADASPanelWhenPause()) {
mServiceApis.getAdasControllerApi().closeADAS();
}
if (mServiceApis.getLauncherApi() != null) {
mServiceApis.getLauncherApi().setFloatButtonVisible(true);
}
}
protected boolean shouldCloseADASPanelWhenPause() {

View File

@@ -110,9 +110,6 @@ public class SchemeIntent implements IMogoStatusChangedListener {
delay = 5_000L;
}
mNextIntent = new IntentWrapper(intent, delay);
if (mApis.getLauncherApi() != null) {
mApis.getLauncherApi().backToLauncher(mContext);
}
return;
}
@@ -203,7 +200,7 @@ public class SchemeIntent implements IMogoStatusChangedListener {
* 语音打开事件面板
* */
private void handleShowEventPanel(int item) {
Logger.d(TAG, "语音打开事件面板" + String.valueOf(item));
Logger.d(TAG, "语音打开事件面板" + item);
mApis.getEventPanelManager().showPanelWithSelectedItem(item);
}