我想在 react native 中播放简短和基本的声音
像哔哔声等...
我不想将文件添加到我的资源应用程序或
我该怎么做?
我检查了一些图书馆
但在所有这些中,我需要提供文件的路径或文件的 URL
回答1
我找到了一个做我想做的图书馆
https://www.npmjs.com/package/react-native-a-beep
npm install "react-native-a-beep"
//(RN < 0.60) Mostly automatic installation
react-native link react-native-a-beep
//Usage
import RNBeep from 'react-native-a-beep';
//Examples:
<Button onPress={ () => {RNBeep.beep()} } title="Beep Success"></Button>
<Button onPress={ () => {RNBeep.beep(false)} } title="Beep Fail"></Button>
<Button onPress={ () => {RNBeep.PlaySysSound(RNBeep.AndroidSoundIDs.TONE_CDMA_ABBR_ALERT)} } title="Beep Android Custom"></Button>
<Button onPress={ () => {RNBeep.PlaySysSound(41)} } title="Beep Something"></Button>
<Button onPress={ () => {RNBeep.PlaySysSound(RNBeep.iOSSoundIDs.AudioToneBusy)} } title="Beep iOS Custom"></Button>