réagir natif de lire le son sur l'événement

J'ai un composant tel que:

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>
        )
    }
}

Ici quand je touche le view je veux jouer du son.
J'ai cherché sur google mais pas trouvé de réponse appropriée

Est-il de toute façon je peux jouer de son quand je presse à quelque chose?
Comment puis-je faire cela ?

InformationsquelleAutor gamer | 2016-05-31