React Native-Expo Audio停止所有声音

问题描述:

我正在使用 Expo Audio 播放来自列表.

I am using Expo Audio to play some short sounds from a list.

async playAudio(file) {

    try {
        await Audio.setIsEnabledAsync(true);
        const sound = new Audio.Sound();
        await sound.loadAsync(file);
        await sound.playAsync(); 
    } catch(error) {
      console.error(error);
    }
}

我从用list.map()

renderTheList = (item, i) => {
    return (
        <View key={i}> 
            <TouchableOpacity onPress={ () => { this.onAudioSelected(item.audio) }}>
            </TouchableOpacity>
        </View>
    )
}

onAudioSelected(audio) {
    // Audio.clearSounds() <-- something like this
    playAudio(audio)

    ...
    }

声音听起来不错,但是当我选择列表中的下一个项目时,上一个声音不会停止.因此,如果我连续触摸一堆,就会立即播放一堆声音.

The sounds play fine, but when I select the next item in the list, the previous sound does not stop. So if I touch a bunch in a row, a bunch of sounds play at once.

如何停止所有当前播放的声音?

我发现我应该在构造函数中创建播放对象并使用unloadAsync()

I figured out that I should create the playback object in the constructor and use unloadAsync()

constructor(props)
    {
      super(props);

      this.audioPlayer = new Audio.Sound();

    }

    playSound = async () => {
        try {
          await this.audioPlayer.unloadAsync()
          await this.audioPlayer.loadAsync(require("../soundfile.mp3"));
          await this.audioPlayer.playAsync();
        } catch (err) {
          console.warn("Couldn't Play audio", err)
        }
    }

完整文档可在 AV-博览会文档中找到