我想在 React Native 中播放声音。
我曾尝试在zmxv/react-native-sound中阅读此处,但作为像我这样的初学者,该文档让我很困惑如何在 React Native 代码中应用它。
在我尝试这个在事件上做出反应本机播放声音并制作如下代码之前:
import React, { Component } from 'react'
import { StyleSheet, Text, View, TouchableOpacity } from 'react-native'
const Sound = require('react-native-sound')
export default class MovieList extends Component {
handlePress() {
// Play some sound here
let hello = new Sound('motorcycle.mp3', Sound.MAIN_BUNDLE, (error) => {
if (error) {
console.log(error)
}
})
hello.play((success) => {
if (!success) {
console.log('Sound did not play')
}
})
}
render() {
const { movie } = this.props
return (
<TouchableOpacity onPress={this.handlePress.bind(this)}>
<View>
<Text>Start</Text>
</View>
</TouchableOpacity>
)
}
}
这就是我放音频的地方:
MyProject/android/app/src/main/res/raw/motorcycle.mp3
项目结构
那么,我的代码有什么问题?