我们正在使用Expo Player构建应用程序。 它具有暂停按钮并可以播放。 我的播放器现在有两个问题:
我的播放器代码:
const playerObject = new Expo.Audio.Sound();
const playing = false;
render() {
return (
<View>
<Card wrapperStyle={{ width: 346, height: 180 }}>
<View style={{ flexDirection: "row" }}>
<Text style={styles.resultsContainer}>
{this.state.song.Song_Name}{" "}
</Text>
<Image
style={styles.imageContainer}
source={{ uri: this.state.song.Image }}
/>
</View>
<View style={styles.buttonRow}>
<Ionicons
name="md-play"
size={40}
color="black"
onPress={async () => {
try {
if (!playing) {
await playerObject.loadAsync({
uri: this.state.song.Song_File
});
}
await playerObject.playAsync();
} catch (error) {}
}}
/>
<View style={{ flex: 0.1 }}> </View>
<Ionicons
name="md-pause"
size={40}
color="black"
onPress={async () => {
playing = true;
try {
{
await playerObject.pauseAsync();
}
} catch (error) {}
}}
/>
{/* )} */}
</View>
</Card>
很高兴能帮助我们。