删除mogo-module-obu 场景

Signed-off-by: donghongyu <donghongyu@zhidaoauto.com>
This commit is contained in:
donghongyu
2021-12-20 17:55:41 +08:00
parent daf002569f
commit 9bbb5ede54
51 changed files with 18 additions and 4072 deletions

View File

@@ -241,13 +241,6 @@ public interface IMogoServiceApis extends IProvider {
*/
IMogoTanluUiProvider getTanluUiApi();
/**
* 获取crashWarnProvider
*
* @return
*/
IMogoCrashWarnProvider getCrashWarnProvider();
/**
* 在线车辆面板
*

View File

@@ -4,7 +4,6 @@ import android.view.View;
import android.widget.TextView;
import com.alibaba.android.arouter.facade.template.IProvider;
import com.mogo.service.windowview.IMogoEntranceViewListener;
/**
* @author congtaowang
@@ -13,54 +12,10 @@ import com.mogo.service.windowview.IMogoEntranceViewListener;
* 入口按钮
*/
public interface IMogoEntranceButtonController extends IProvider {
/**
* 前车急刹
*/
int NOTICE_TYPE_SUDDENLY_BREAK = 1001;
/**
* vip变灯通行
*/
int NOTICE_TYPE_VIP = 1002;
/**
* 行人碰撞预警
*/
int NOTICE_TYPE_PEOPLE_WARN = 1003;
/**
* 逆向超车
*/
int NOTICE_TYPE_ILLEGAL_OVERTAKE = 1004;
/**
* 后方危险车辆提醒
*/
int NOTICE_TYPE_DANGEROUS_CAR_WARN = 1005;
/**
* 特殊车辆快速通过
*/
int NOTICE_TYPE_SPECIAL_CAR_WARN = 1006;
/**
* 自车求助
*/
int NOTICE_TYPE_SEEK_HELP = 1007;
/**
* 交通事故识别
*/
int NOTICE_TYPE_ACCIDENT_WARN = 1008;
/**
* 障碍物体绕行
*/
int NOTICE_TYPE_OBSTACLE_WARN = 1009;
/**
* 障碍车辆绕行
*/
int NOTICE_TYPE_OBSTACLE_CAR_WARN = 1010;
/**
* 拥堵路线推荐
*/
int NOTICE_TYPE_CONGESTION_RECOMMENDED = 1011;
/**
* 获取入口按钮实例
@@ -70,13 +25,6 @@ public interface IMogoEntranceButtonController extends IProvider {
*/
TextView getButton(ButtonIndex index);
/**
* 添加低层级view使用ViewGroup.addView(v,0)实现
*
* @param view 将要添加的view
*/
void addBottomLayerView(View view);
/**
* 添加低层级view使用ViewGroup.addView(v,0)实现
* 可指定x,y位置
@@ -108,24 +56,10 @@ public interface IMogoEntranceButtonController extends IProvider {
*/
void removeLeftFeatureView(View view);
/**
* 设置vr模式下左下角提示view
*
* @param view 目前是adas提示和求助
*/
void showLeftNoticeView(View view);
/**
* 隐藏vr模式下左下角提示view需要与{@link #showLeftNoticeView(View)}成对使用
*
* @param view 待隐藏view
*/
void hideLeftNoticeView(View view);
/**
* 根据noticeType添加左侧提示
*
* @param noticeType {@link #NOTICE_TYPE_SUDDENLY_BREAK}...
* @param noticeType {@link #NOTICE_TYPE_SEEK_HELP}...
* @param iconRes 本地 icon res
* @param content 提示内容
*/
@@ -134,21 +68,8 @@ public interface IMogoEntranceButtonController extends IProvider {
/**
* 移除noticeType需要与{@link #showLeftNoticeByType(int, int, String)}成对使用
*
* @param noticeType {@link #NOTICE_TYPE_SUDDENLY_BREAK}...
* @param noticeType {@link #NOTICE_TYPE_SEEK_HELP}...
*/
void hideLeftNoticeByType(int noticeType);
/**
* 添加view状态回调监听
*
* @param listener 回调监听
*/
void addEntranceViewListener(IMogoEntranceViewListener listener);
/**
* 移除view状态回调监听
*
* @param listener 回调监听
*/
void removeEntranceViewListener(IMogoEntranceViewListener listener);
}