React Native (一) react-native-video实现音乐播放器和进度条的功能
<h2 id="react-native-一-react-native-video实现音乐播放器和进度条的功能">React Native (一) react-native-video实现音乐播放器和进度条的功能</h2><h2 id="功能">功能:</h2>
<p>1.卡片滑动切歌</p>
<p>2.显示进度条</p>
<h2 id="效果图">效果图:</h2>
<p><img src="https://img2018.cnblogs.com/blog/1729728/201907/1729728-20190729133024008-358601910.jpg" alt="" loading="lazy"></p>
<h2 id="第三方组件">第三方组件:</h2>
<p>1.react-native-video</p>
<p>Github地址:https://github.com/react-native-community/react-native-video</p>
<p>2.react-native-animated-tabs</p>
<p>Github地址:https://github.com/philipshurpik/react-native-animated-tabs</p>
<h2 id="下载方式">下载方式:</h2>
<p>Using npm:</p>
<pre><code>npm install --save react-native-video
npm install --save react-native-animated-tabs
</code></pre>
<p>or using yarn:</p>
<pre><code>yarn add react-native-video
yarn add react-native-animated-tabs
</code></pre>
<p>如果RN版本>=0.60,是自动link的,如果在0.60以下则需要手动link</p>
<pre><code>运行 `react-native link react-native-video` 连接react-native-video库
react-native-animated-tabs同上
</code></pre>
<h2 id="卡片滑动功能">卡片滑动功能</h2>
<h3 id="1导入需要的组件">1.导入需要的组件</h3>
<pre><code>import AnimatedTabs from "react-native-animated-tabs";
</code></pre>
<h3 id="2使用组件">2.使用组件</h3>
<pre><code> <AnimatedTabs
panelWidth={getPanelWidth()}
activePanel={this.state.activePanel}
onAnimateFinish={activePanel => this.setState({ activePanel })}
>
/**
此处放你的卡片
<View><Image source={...}/></View>
...
*/
</AnimatedTabs>
</code></pre>
<h3 id="3按钮切换卡片">3.按钮切换卡片</h3>
<pre><code> <View style={styles.buttons}>
<TouchableOpacity
style={styles.text}
onPress={() => this.goToPanel(-1)}
>
<Text>上一首歌</Text>
</TouchableOpacity>
<TouchableOpacity
style={styles.text}
onPress={() => this.goToPanel(1)}
>
<Text>下一首歌</Text>
</TouchableOpacity>
</code></pre>
<h3 id="4gotopanel函数">4.goToPanel()函数</h3>
<pre><code>goToPanel(direction) {
const nextPanel = this.state.activePanel + direction;
if (nextPanel >= 0 && nextPanel < panelsCount) {
this.setState({ activePanel: nextPanel });
}
}
}
</code></pre>
<p>这时候就可以实现滑动卡片功能了</p>
<h3 id="示例图">示例图:</h3>
<p><img src="https://github.com/philipshurpik/react-native-animated-tabs/raw/master/tabs.gif" alt="img" loading="lazy"></p>
<h2 id="使用react-native-video音乐插入">使用react-native-video音乐插入</h2>
<h3 id="1导入需要的组件和音乐">1.导入需要的组件和音乐</h3>
<pre><code>import Video from "react-native-video";
import url1 from "../static/video/徐小明-渔歌.mp3";
</code></pre>
<h3 id="2使用组件-1">2.使用组件</h3>
<pre><code><Video
source={require('./background.mp4')} // 视频的URL地址,或者本地地址
//source={require('./music.mp3')} // 可以播放音频
//source={{uri:'http://......'}}
ref='player'
rate={this.state.isPlay?1:0} // 控制暂停/播放,0 代表暂停paused, 1代表播放normal.
volume={1.0}
// 声音的放声音的放大倍数大倍数,0 为静音,1 为正常音量 ,更大的数字表示放大的倍数
muted={false} // true代表静音,默认为false.
paused={false} // true代表暂停,默认为false
resizeMode="contain" // 视频的自适应伸缩铺放行为,contain、stretch、cover
repeat={false} // 是否重复播放
playInBackground={false} // 当app转到后台运行的时候,播放是否暂停
playWhenInactive={false} // Video continues to play when control or notification center are shown. 仅适用于IOS
onLoadStart={this.loadStart} // 当视频开始加载时的回调函数
onLoad={this.setDuration} // 当视频加载完毕时的回调函数
onProgress={this.setTime} //进度控制,每250ms调用一次,以获取视频播放的进度
onEnd={this.onEnd} // 当视频播放完毕后的回调函数
onError={this.videoError} // 当视频不能加载,或出错后的回调函数
style={styles.backgroundVideo}
/>
</code></pre>
<h3 id="3我设置组件的一些属性">3.我设置组件的一些属性</h3>
<pre><code> <Video
ref={video => (this.player = video)}
source={SONGS.url}
ref="video"
paused={this.state.paused}
onLoad={data => this.setDuration(data)}
volume={1.0}
paused={false}
onEnd={() => this.goToPanel(1)}
playInBackground={true}
onProgress={e => this.setTime(e)}
playWhenInactive={true}
/>
</code></pre>
<h3 id="4用到的函数">4.用到的函数</h3>
<pre><code> constructor() {
super();
this.state = {
activePanel: 0, //当前active的面板
activeSong: SONGS, //正在播放的歌
currentTime: 0.0, //当前播放的时间
paused: 1.0, //播放
sliderValue: 0, //进度条的进度
duration: 0.0 //总时长
};
}
//格式化音乐播放的时间为0:00
formatMediaTime(duration) {
let min = Math.floor(duration / 60);
let second = duration - min * 60;
min = min >= 10 ? min : "0" + min;
second = second >= 10 ? second : "0" + second;
return min + ":" + second;
}
//设置进度条和播放时间的变化
setTime(data) {
let sliderValue = parseInt(this.state.currentTime);
this.setState({
slideValue: sliderValue,
currentTime: data.currentTime
});
}
//设置总时长
setDuration(duration) {
this.setState({ duration: duration.duration });
}
</code></pre>
<h2 id="进度条的配置">进度条的配置</h2>
<pre><code> <Slider
style={styles.slider}
value={this.state.slideValue}
maximumValue={this.state.duration}
step={1}
onValueChange={value => this.setState({ currentTime: value })}
/>
</code></pre><br><br>
来源:https://www.cnblogs.com/Crystal-Zh/p/11263367.html
頁:
[1]