如何在不改变宽高比的情况下调整视频大小?

时间:2019-01-30 05:54:56

标签: android reactjs react-native react-native-video

  constructor(props) {
    super(props);
    this.state = {
        screenWidth: Dimensions.get('window').width,
        heightScaled: null,
    };  
  }   

<View style={styles.videoView}>
       <Video 
          source={video}
          ref={(ref) => { this.player = ref }}  
          repeat={true}
          resizeMode={"contain"}
          style={{
              width: this.state.screenWidth,
              height: this.state.heightScaled,
           }}
          onLoad={response => {
                const { width, height } = response.naturalSize;
                const heightScaled = height * (this.state.screenWidth / width);

                response.naturalSize.orientation = "horizontal";
                this.setState({ heightScaled: heightScaled });
          }}
       />
</View>

样式

videoView: {
  flex: 1,
  width: Dimensions.get('window').width,
  height: 350
}

我正在从api获取视频,然后使用react-native-video在视频组件中使用它。我不知道如何在不拉伸视频的情况下调整视频大小以适合视图。

这是上面代码的结果。

enter image description here

我不希望我的视频越过我在图像中标记的红线。 请帮我。过去三天来我一直在解决这个问题。

1 个答案:

答案 0 :(得分:0)

在包含<View />的父<View />内再添加一个<Video />,将解决视频溢出问题。

<View style={styles.videoView}>
  <Video
    resizeMode={"contain"}
    style={{
      flex: 1
    }}
  />
  <View style={{flex: 1}}>
     {/* Components after red line can be rendered here */}
  </View>
</View>