实现播放视频及弹幕

本文介绍了在Android中如何实现视频播放并添加弹幕功能。通过引入GSYVideoPlayer和DanmakuFlameMaster库,设置视频源,初始化弹幕组件,并创建自定义弹幕解析器。同时,详细展示了在不同生命周期方法中对视频暂停和弹幕控制的操作。
摘要由CSDN通过智能技术生成

1:依赖: implementation ‘com.shuyu:GSYVideoPlayer:7.0.1’
implementation ‘com.github.ctiao:DanmakuFlameMaster:0.7.3’

2:布局

<com.shuyu.gsyvideoplayer.video.StandardGSYVideoPlayer
    android:id="@+id/video_player"
    android:layout_width="match_parent"
    android:layout_height="450dp"
    android:layout_centerInParent="true" />

<master.flame.danmaku.ui.widget.DanmakuView
    android:id="@+id/danmaku_view"
    android:layout_width="match_parent"
    android:layout_height="450dp"
    android:layout_centerInParent="true" />

<LinearLayout
    android:layout_width="match_parent"
    android:id="@+id/line"
    android:layout_height="wrap_content">

    <Button
        android:id="@+id/butn1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="发送"></Button>

    <EditText

        android:id="@+id/ed"
        android:layout_width="324dp"
        android:layout_height="match_parent"></EditText>
</LinearLayout>
3:代码

public class MainActivity extends AppCompatActivity implements View.OnClickListener {
OrientationUtils orientationUtils;
private DanmakuView danmaku_view;
private boolean showDanmaku;
private DanmakuContext danmakuContext;
/**
* 弹幕解析器
*/
private BaseDanmakuParser parser = new BaseDanmakuParser() {
@Override
protected IDanmakus parse() {
return

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值