[add] 预警弹框window
This commit is contained in:
@@ -0,0 +1,54 @@
|
|||||||
|
package com.mogo.module.v2x.scenario.scene.warning;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.util.AttributeSet;
|
||||||
|
import android.view.View;
|
||||||
|
|
||||||
|
import com.mogo.module.v2x.listener.V2XWindowStatusListener;
|
||||||
|
import com.mogo.module.v2x.scenario.scene.V2XBasWindow;
|
||||||
|
import com.mogo.module.v2x.scenario.view.IV2XWindow;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author liujing
|
||||||
|
* @description 车路云—场景预警 http://wiki.zhidaohulian.com/pages/viewpage.action?pageId=52829799
|
||||||
|
* @since: 2021/3/25
|
||||||
|
*/
|
||||||
|
public class V2XWarningWindow extends V2XBasWindow implements IV2XWindow {
|
||||||
|
|
||||||
|
public V2XWarningWindow(Context context) {
|
||||||
|
super(context);
|
||||||
|
}
|
||||||
|
|
||||||
|
public V2XWarningWindow(Context context, AttributeSet attrs) {
|
||||||
|
super(context, attrs);
|
||||||
|
}
|
||||||
|
|
||||||
|
public V2XWarningWindow(Context context, AttributeSet attrs, int defStyleAttr) {
|
||||||
|
super(context, attrs, defStyleAttr);
|
||||||
|
initView(context);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void initView(Context context) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void show(Object entity) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void close() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public View getView() {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setWindowStatusListener(V2XWindowStatusListener listener) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user