我有一个组件,如:
@H_403_12@
查看
React Native Sound – 用于访问设备音频控件的跨平台组件.
import React,{ Component } from 'react' import { StyleSheet,Text,View,TouchableOpacity } from 'react-native' class MovieList extends Component { handlePress() { // Play some sound here } render() { const { movie } = this.props return ( <TouchableOpacity onPress={this.handlePress.bind(this)}> <View style={styles.movie}> <Text style={styles.name}>{movie.name}</Text> <View style={styles.start}> <Text style={styles.text}>Start</Text> </View> </View> </TouchableOpacity> ) } }
在这里,当我触摸视图时,我想播放一些声音.
我搜索了它,但没有找到任何适当的答案
无论如何,当我按下某些东西时,我能发出声音吗?
我怎样才能做到这一点 ?
您可以像这样使用它:
const Sound = require('react-native-sound') let hello = new Sound('hello.mp3',Sound.MAIN_BUNDLE,(error) => { if (error) { console.log(error) } }) hello.play((success) => { if (!success) { console.log('Sound did not play') } })