增加了针对事件面板的展示隐藏接口调用
This commit is contained in:
@@ -99,4 +99,14 @@ public class V2XEventPanelModuleProvider implements
|
||||
public void showPanelWithSelectedItem(int item) {
|
||||
V2XEventPanelFragment.Companion.getInstance().showPanelWithSelectedItem(item);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void showPanel() {
|
||||
V2XEventPanelFragment.Companion.getInstance().showPanel();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void hidePanel() {
|
||||
V2XEventPanelFragment.Companion.getInstance().hidePanel();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,4 +14,14 @@ public interface IEventPanelProvider extends IMogoModuleProvider {
|
||||
*/
|
||||
void showPanelWithSelectedItem(int item);
|
||||
|
||||
/**
|
||||
* 显示面板,默认选中第一个
|
||||
*/
|
||||
void showPanel();
|
||||
|
||||
/**
|
||||
* 隐藏面板
|
||||
*/
|
||||
void hidePanel();
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user