当前位置:主页 > 移动开发 > Android代码 >

Android中WebChromeClient和WebViewClient的区别浅析

时间:2021-01-30 10:24:04 | 栏目:Android代码 | 点击:

1、WebViewClient就是帮助WebView处理各种通知、请求事件的,具体来说包括:onLoadResource 、onPageStart 、onPageFinish 、onReceiveError 、onReceivedHttpAuthRequest

2、WebChromeClient是辅助WebView处理Javascript的对话框,网站图标,网站title,加载进度等

onCloseWindow(关闭WebView) 、onCreateWindow() 、onJsAlert (WebView上alert是弹不出来东西的,需要定制你的WebChromeClient处理弹出)onJsPrompt 、onJsConfirm 、onProgressChanged 、onReceivedIcon 、onReceivedTitle

您可能感兴趣的文章:

相关文章