AgentWeb icon indicating copy to clipboard operation
AgentWeb copied to clipboard

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

Open zcybug opened this issue 1 year ago • 2 comments

zcybug avatar Jul 18 '24 09:07 zcybug

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

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

这个两个页面都得有

abiao193 avatar Aug 21 '24 03:08 abiao193

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

Dirtyshushu avatar Aug 28 '24 11:08 Dirtyshushu