Merge branch 'dev_robotaxi-d_240401_6.4.0' into dev_robotaxi-d_240401_6.4.0_bailing

This commit is contained in:
yangyakun
2024-05-07 09:57:46 +08:00
122 changed files with 1406 additions and 706 deletions

View File

@@ -63,7 +63,6 @@ class StatusBarView @JvmOverloads constructor(
updateStatusBarLeftView(true, FUNC_MODE_DEMO, DemoModeView(this.context))
updateStatusBarLeftView(true, FUNC_MODE_RAIN, RainModeView(this.context))
CallerDevaToolsManager.registerRouteDownloadListener(TAG) { state ->
routeDownloadStatusRoot?.visibility = View.VISIBLE
when(state) {
0 -> {
routeDownloadStatusRoot?.visibility = View.GONE

View File

@@ -27,13 +27,15 @@ public class MainPresenter extends Presenter<MainView> {
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
switch (msg.what) {
case MainConstants.MSG_HIDE_MAP_COVER_FRAME:
mView.hideCoverUpLayout();
break;
case MainConstants.MSG_LOAD_MODULES:
mView.loadModules();
break;
if(mView!=null) {
switch (msg.what) {
case MainConstants.MSG_HIDE_MAP_COVER_FRAME:
mView.hideCoverUpLayout();
break;
case MainConstants.MSG_LOAD_MODULES:
mView.loadModules();
break;
}
}
}
};