去掉vip左下角展示

This commit is contained in:
tongchenfei
2020-10-26 11:01:12 +08:00
parent a978851062
commit 8e883853eb
2 changed files with 2 additions and 10 deletions

View File

@@ -59,15 +59,8 @@ public class AdasNoticeHelper implements IMogoAdasWarnMessageCallback {
// todo 处理发给adas的事件, 主要处理逆向超车和obu行人碰撞
String id = intent.getStringExtra("v2x_warning_type");
if (id != null) {
switch (id) {
case "100003":
MogoApisHandler.getInstance().getApis().getEntranceButtonController().showLeftNoticeByType(IMogoEntranceButtonController.NOTICE_TYPE_PEOPLE_WARN, R.drawable.module_ext_people_warn, "前方注意行人");
break;
case "":
break;
default:
break;
if ("100003".equals(id)) {// 行人碰撞
MogoApisHandler.getInstance().getApis().getEntranceButtonController().showLeftNoticeByType(IMogoEntranceButtonController.NOTICE_TYPE_PEOPLE_WARN, R.drawable.module_ext_people_warn, "前方注意行人");
}
}
}