我正在渲染视频列表。视频在 iOS 上运行良好,但在 Android 上,音频不起作用。这是我的代码
<Video
key={recommendationImage.id}
style={styles.recommendationImage}
source={{ uri: recommendationImage.img_url }}
shouldPlay={this.state.videoIsPlaying}
isLooping={true}
useNativeControls={true}
isMuted={this.state.videoIsMuted}
resizeMode="cover"
/>
这是我的状态:
this.state = {
isLiked: false,
videoIsPlaying: true,
videoIsMuted: true,
};
我正在使用expo-av
我的视频组件。这是我的版本:"expo-av": "~8.2.1"
它在 iOS 上完美运行,但在 Android 上却不行。这是世博会的问题吗?