因此,我知道要将事件发送回本机JavaScript端,需要进行与此类似的调用。
this.reactContext
.getJSModule(DeviceEventManagerModule.RCTDeviceEventEmitter.class)
.emit("onSessionConnect", params);
问题在于,我要运行上述调用的方法驻留在扩展Appcompat父级的类中,而我不知道任何方法可以在此类中获取ReactApplicationContext。
正在从View类中调用我的活动类,该类启动了这样的意图
Intent intent = new Intent(reactContext,someActivityClass.class);
reactContext.startActivity(Intent);
此视图在SimpleViewManager / createViewManager下注册。