在 React Native 中打开此屏幕时如何设置音频播放

时间:2021-03-28 04:09:24

标签: react-native

enter image description here

希望有人能帮助我 非常感谢。

1 个答案:

答案 0 :(得分:1)

您可以使用 React-native-sound 来做到这一点。

示例:

componentDidMount() {
    this.sound = new Sound(this.props.urlAudio, null, error => {
      console.log("Audio loaded...")
      if (!error) {
          console.log("Audio starting...")
          this._startAudio()
      }
    })
}

_startAudio() {
   this.sound.play(()=> {
       console.log("Audio playing....")
   })
}