Justson / AgentWeb

AgentWeb is a powerful library based on Android WebView.
https://www.jianshu.com/p/fc7909e24178
Apache License 2.0
9.27k stars 1.64k forks source link

在fragment中使用AgentWeb后,在当前页面打开一个使用原生Webview的Activity,页面出现白屏 #1067

Open zcybug opened 4 months ago

abiao193 commented 3 months ago
override fun onResume() {
    super.onResume()
    agentWeb?.webLifeCycle?.onResume()
}

override fun onPause() {
    super.onPause()
    agentWeb?.webLifeCycle?.onPause()
}

这个两个页面都得有

Dirtyshushu commented 3 months ago

建议作者把pauseTimer作为可选配置,不要默认在lifeCycle中强制使用,因为一开始的文档大家理解都是默认的webview的pause,但是内部实现把timer也控制了,这样会导致合其他三方SDK中的webview冲突