<Video
ref={(ref) => {this.player = ref }}
source={{ uri: this.state.url}}
paused={this.state.paused}
style={this.state.isFullScreen ? styles.videoFullScreen : styles.videoNormal}
resizeMode="contain"
onLoad={this.videoOnLoad.bind(this)}
onProgress={this.videoOnProgress.bind(this)}
onEnd={this.videoOnEnd.bind(this)}
onBuffer={this.onBuffer.bind(this)}
textTracks={this.state.subtitles}
selectedTextTrack={{
type: "title",
value: this.state.selectedTextTrack,
volume:{volume}
}}
/>
这些是我在代码中使用的道具。我检查了文本轨道位置的文档,但找不到任何内容。文本轨道的默认位置是顶部。我想在底部显示字幕。我该怎么做?图像下方显示了当前显示字幕的方式。