获取ReactContext将事件从Android的本机模块发送到JavaScript

时间:2018-09-17 07:17:51

标签: android react-native react-native-native-module

因此,我知道要将事件发送回本机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下注册。

0 个答案:

没有答案