去掉vip左下角展示
This commit is contained in:
@@ -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, "前方注意行人");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user