如何检测React Native中何时按下主页按钮?

时间:2019-05-25 16:59:16

标签: android reactjs react-native

我正在使用react-native-sound-player播放一些声音,我想在退出应用程序时停止播放。

在android系统中,我尝试使用react-native-home-pressed

componentDidMount() {
  DeviceEventEmitter.addListener("ON_HOME_BUTTON_PRESSED", () => {
    SoundPlayer.stop();
  });
}

但是,这不起作用。我该怎么解决?

0 个答案:

没有答案