解决页面退出 WebView 继续播放视频音乐的问题

当前 Activity 已经销毁或者当前页面不在前台,但是视频还在继续播放着,必须杀掉 App 才可以停止,这样用户体验就非常不好。

  • 解决办法
@Override
protected void onResume() {
    super.onResume();
    if (wv_content != null) {
        wv_content.onResume();
    }
}

@Override
protected void onPause() {
    super.onPause();
    if (wv_content != null) {
        wv_content.onPause();
    }
}

@Override
protected void onDestroy() {
    super.onDestroy();
    if (wv_content != null) {
        wv_content.destroy();
    }
}

在相应的Activity的生命周期中调用对应 WebView 的生命周期的方法,就可以解决了。

/**
 * --------------
 * 欢迎转载   |  转载请注明
 * --------------
 * 如果对你有帮助,请点击|顶|
 * --------------
 * 请保持谦逊 | 你会走的更远
 * --------------
 * @author zsl
 * @github https://github.com/yy1300326388
 * @blog http://blog.csdn.net/yy1300326388
 */
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ZeroFlutter

感谢支持,请我喝杯咖啡

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值