我有一个组件,如:
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>
)
}
}
Run Code Online (Sandbox Code Playgroud)
在这里当我触摸时view我想播放一些声音.我搜索了它,但没有找到任何适当的答案
无论如何,当我按下某些东西时我能发出声音吗?我怎样才能做到这一点 ?
react-native ×1