2017-08-29 20 views
0

我想播放音頻文件,但它播放的是自動播放,我無法暫停播放。無法在反應本機視頻中停頓

我該如何解決這個問題?
在開始
我的代碼,必須暫停:

import Video from 'react-native-video'; 

export default class Android extends Component { 
    constructor(props) { 
    super(props) 
    this.state = { 
     paused: true, 
    } 
    } 

    video: Video; 

    render() { 
    return (
     <View style={styles.container}> 
     <Text style={styles.welcome}> 
      Welcome to React Native! 
     </Text> 
     <Text style={styles.instructions}> 
      To get started, edit index.ios.js 
     </Text> 
     <Text style={styles.instructions}> 
      Press Cmd+R to reload,{'\n'} 
      Cmd+D or shake for dev menu 
     </Text> 
     <Video 
      ref={(ref: Video) => { this.video = ref }} 
      source={{ uri: "http://s3.picofile.com/d/7376893331/8b7bc5b4-4b5e-47c4-96dd-b0c13fd18157/Sara_Diba_Delbare_Man.mp3", mainVer: 1, patchVer: 0 }} 
      paused={this.state.paused} 
     /> 
     </View> 
    ); 
    } 
} 

回答