3

我正在使用这样的视频组件:

<Video style={[videoPlayerStyle, this.props.containerStyle, {height: videoHeight, width: videoWidth}] }
      source={{uri: this.props.videoURL}}
      ref={(ref) => {
        this.player = ref
    }} 
      paused={this.state.paused}
      controls={nativeControls}
      playInBackground={false}
      repeat={false} 
      key="something123"
      muted={this.state.mute}

      onBuffer={this.onBuffer}
      onEnd={this.onEnd}
      onError={this.onError}
      onLoad={this.onLoad}
      onLoadStart={this.onLoadStart}
      onProgress={this.onProgress}
    />

视频结束后,我显示一个允许用户再次播放的按钮。我尝试使用:

restartPlayingVideo = (dict) => {
  this.player.seek(0) // I tried with and without this
  this.setState({paused: false})
}

但该视频在 Android 上无法再次播放(在 iOS 上运行良好)。

我错过了什么吗?

4

1 回答 1

6

我用了

<Video repeat={true} paused={this.state.paused} onEnd={this.setState({paused: true})}> 
</Video>

为我工作。

于 2019-04-01T10:48:57.567 回答