标签: android reactjs react-native
我正在使用react-native-sound-player播放一些声音,我想在退出应用程序时停止播放。
在android系统中,我尝试使用react-native-home-pressed:
componentDidMount() { DeviceEventEmitter.addListener("ON_HOME_BUTTON_PRESSED", () => { SoundPlayer.stop(); }); }
但是,这不起作用。我该怎么解决?