簡體   English   中英

react-native 無文件播放聲音

[英]react-native play sound without file

我想在 React Native 中播放簡短和基本的聲音

像嗶嗶聲等...

我不想將文件添加到我的資源應用程序或

我該怎么做?

我檢查了一些圖書館

但在所有這些中,我需要提供文件的路徑或文件的 URL

我找到了一個做我想做的圖書館

反應原生蜂鳴

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>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM