我正在使用React本机版本 0.61.5 和React版本 16.8.3 与React本机有天赋的聊天版本 0.9.11 构建一个小型聊天应用。我想发送音频消息。因此,我使用 react-native-audio-recorder-player 库来录制音频并进行播放。到目前为止,音频录制和播放是成功的。现在,我想在用户播放音频时播放音频轨道进度。我使用了 react-native-community / react-native-slider 来显示搜索栏。这就是音频消息的样子
当用户按下播放按钮时,我想在此滑块上显示音轨进度。到目前为止,这就是我的方法。
礼物聊天组件
render() {
return (
<GiftedChat
messages={this.state.messages}
onSend={messages => this.onSend(messages)}
scrollToBottom={true}
renderUsernameOnMessage={true}
renderComposer={this.renderComposer}
renderBubble={this.renderBubble}
user={{
_id: 1,
name:'You'
}}
/>
)
}
renderBubble组件
renderBubble = (props) => {
return(
<View>
<View style={{display:'flex',flexDirection:'row'}}>
<Button iconLeft transparent onPress={this.onStartPlay}>
<Icon name='ios-play' />
</Button>
<Slider
style={{width: 150, height: 40}}
minimumValue={0.0000}
maximumValue={1.0000}
value={this.state.audioProgress}
minimumTrackTintColor="#FFFFFF"
maximumTrackTintColor="#000000"
/>
</View>
<Bubble {...props}/>
</View>
)
}
onStartPlay功能
onStartPlay = async () => {
console.log('onStartPlay');
const msg = await audioRecorderPlayer.startPlayer('sdcard/test_recording.aac');
console.log(msg);
audioRecorderPlayer.addPlayBackListener((e) => {
if (e.current_position === e.duration) {
console.log('finished');
audioRecorderPlayer.stopPlayer();
}
this.setState({
currentPositionSec: e.current_position,
currentDurationSec: e.duration,
playTime: audioRecorderPlayer.mmssss(Math.floor(e.current_position)),
duration: audioRecorderPlayer.mmssss(Math.floor(e.duration)),
});
let currentProgress = Math.max(0, e.current_position) / e.duration;
console.log('currentProgress',parseFloat(currentProgress).toFixed(4));
this.setState({ audioProgress: parseFloat(currentProgress).toFixed(4) });
});
};
,我可以在控制台中看到当前进度正在audioProgress
状态下更新。我通过Slider
设置了audioProgress
的值,但是搜索栏的位置没有得到更新。我正在Nexus android模拟器上对此进行测试。
答案 0 :(得分:0)
我相信您需要将onValueChange添加到滑块。 尝试添加:
<Slider
style={{width: 150, height: 40}}
minimumValue={0.0000}
maximumValue={1.0000}
value={this.state.audioProgress}
onValueChange = {this.state.audioProgress.bind(this)} <===
minimumTrackTintColor="#FFFFFF"
maximumTrackTintColor="#000000"
/>
或
<Slider
style={{width: 150, height: 40}}
minimumValue={0.0000}
maximumValue={1.0000}
value={this.state.audioProgress}
onValueChange = {this.state.audioProgress} <===
minimumTrackTintColor="#FFFFFF"
maximumTrackTintColor="#000000"
/>
让我知道它是否有效!