[add] 暂存-2D进入3D,消除2D下V2X弹框
This commit is contained in:
@@ -1,7 +1,5 @@
|
||||
package com.mogo.service.v2x;
|
||||
|
||||
import android.content.Intent;
|
||||
|
||||
import com.alibaba.android.arouter.facade.template.IProvider;
|
||||
|
||||
/**
|
||||
@@ -10,9 +8,11 @@ import com.alibaba.android.arouter.facade.template.IProvider;
|
||||
* @since: 2021/3/24
|
||||
*/
|
||||
public interface IV2XProvider extends IProvider {
|
||||
public void registerIntentListener(String intent, IV2XListener listener);
|
||||
public void registerIntentListener(String intent, Object listener);
|
||||
|
||||
public void unregisterIntentListener(String intent, IV2XListener listener);
|
||||
public void unregisterIntentListener(String intent, IV2XWarningListener listener);
|
||||
|
||||
public void warningChangedForListenerWithDirection(int direction, String command);
|
||||
|
||||
public void changeTipWindowStatusForListener(String command);
|
||||
}
|
||||
|
||||
@@ -5,6 +5,7 @@ package com.mogo.service.v2x;
|
||||
* @description 描述
|
||||
* @since: 2021/3/24
|
||||
*/
|
||||
public interface IV2XListener {
|
||||
public interface IV2XWarningListener {
|
||||
//车路云预警后红色蒙层根据方位进行展示
|
||||
void warningChangedWithDirection(int direction);
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
package com.mogo.service.v2x;
|
||||
|
||||
/**
|
||||
* @author liujing
|
||||
* @description 描述
|
||||
* @since: 2021/6/4
|
||||
*/
|
||||
public interface IV2XWindowManagerListener {
|
||||
//移除v2x的所有道路事件及预警弹框
|
||||
void removeAllTipWindow();
|
||||
}
|
||||
Reference in New Issue
Block a user