相关疑难解决方法(0)

在事件中反应本机播放声音

我有一个组件,如:

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

21
推荐指数
2
解决办法
2万
查看次数

标签 统计

react-native ×1