| | |
| | | |
| | | |
| | | import com.google.gson.Gson; |
| | | import com.hdl.linkpm.sdk.user.HDLLinkPMUser; |
| | | import com.hdl.photovoltaic.HDLApp; |
| | | import com.hdl.photovoltaic.R; |
| | | import com.hdl.photovoltaic.config.AppConfigManage; |
| | | import com.hdl.photovoltaic.enums.LowerTagType; |
| | | import com.hdl.photovoltaic.other.HdlLogLogic; |
| | | import com.hdl.photovoltaic.other.HdlThreadLogic; |
| | | import com.hdl.sdk.link.core.bean.eventbus.BaseEventBus; |
| | |
| | | |
| | | //小程序被关闭了通知给原生 |
| | | BaseEventBus baseEventBus = new BaseEventBus(); |
| | | baseEventBus.setType(HDLUniMP.UNI_EVENT_REPLY_HOME_CLOSE_HOME_DETAILS_PAGE); |
| | | baseEventBus.setTopic(HDLUniMP.UNI_EVENT_REPLY_HOME_CLOSE_HOME_DETAILS_PAGE); |
| | | baseEventBus.setType(LowerTagType.power_station.toString()); |
| | | EventBus.getDefault().post(baseEventBus); |
| | | |
| | | } |
| | |
| | | HdlLogLogic.print("uni_GetAppParams callback:" + params.toString()); |
| | | } else { |
| | | //除了统一处理,剩余其它特定场景的事件通知 |
| | | if (onOtherUniMPEventCallBack != null) { |
| | | if (onOtherUniMPEventCallBack!= null) { |
| | | onOtherUniMPEventCallBack.onOtherUniMPEventReceive(appid, event, data, callback); |
| | | } else { |
| | | HdlLogLogic.print("收到小程序通知,回调事件为null,无法回调事件并执行业务逻辑--->event=" + event + "\r\n" + "data=" + data, true); |
| | | //有可能是系统回收掉activity导致回调为null,这样情况下强制返回登录界面; |
| | | //todo 长时间没响应将退出登录界面重新登录 |
| | | HDLLinkPMUser.getInstance().logout(0); |
| | | } |
| | | } |
| | | } |
| | |
| | | UniMPOpenConfiguration uniMPOpenConfiguration = new UniMPOpenConfiguration(); |
| | | uniMPOpenConfiguration.path = path; |
| | | uniMPOpenConfiguration.extraData = jsonObject; |
| | | uniMPOpenConfiguration.splashClass=MySplashView.class; |
| | | uniMPOpenConfiguration.splashClass = MySplashView.class; |
| | | uniMP = DCUniMPSDK.getInstance().openUniMP(mContext, uniAppId, uniMPOpenConfiguration); |
| | | } |
| | | //android14有些设备有问题,需要等待 |