标签: android react-native react-native-android
我需要访问SimpleViewManager中的主要活动才能使用Android youtube播放器。但是,从0.29开始,React-Native更改不会为创建模块提供主要活动。
SimpleViewManager
我已经读过,我们现在可以使用context.getCurrentActivity(),但显然您需要利用生命周期事件来确保活动不是null。我尝试通过实施LifecycleEventListener添加这些事件,但onResume()永远不会被调用。
context.getCurrentActivity()
null
LifecycleEventListener
onResume()
我想了解的是: