WebViewClient與WebChromeClient 區別
android應用開發的時候可能會用到webview這個元件,使用過程中可能會接觸到WebViewClient與WebChromeClient,那麼這兩個類到底有什麼不同呢?
WebViewClient主要幫助WebView處理各種通知、請求事件的,比如:
WebChromeClient主要輔助WebView處理Javascript的對話方塊、網站圖示、網站title、載入進度等,比如:
當然,有些更精彩的內容還是需要你自己新增的
WebViewClient主要幫助WebView處理各種通知、請求事件的,比如:
onLoadResource,onPageStart,onPageFinish,onReceiveError,onReceivedHttpAuthRequest 等。
webview1.setWebViewClient(new WebViewClient() {
public void onReceivedError(WebView view, int errorCode, String description,
String failingUrl){
//Handle the error
Toast.makeText(getApplicationContext(), "網路連線失敗 ,請連線網路。", Toast.LENGTH_SHORT).show();
};
}
});
webview1.getSettings().setDefaultTextEncodingName("UTF-8");
webview1.loadUrl("");
WebChromeClient主要輔助WebView處理Javascript的對話方塊、網站圖示、網站title、載入進度等,比如:
onCloseWindow(關閉WebView),onCreateWindow(),onJsAlert (WebView上alert無效,需要定製WebChromeClient處理彈出),onJsPrompt,onJsConfirm,onProgressChanged,onReceivedIcon,onReceivedTitle 等等。
//比如可以新增進度條,使得介面更友好
webview1.setWebChromeClient(new WebChromeClient() {
public void onProgressChanged(WebView view, int progress) {
setProgress(progress * 100); if(progress == 100){
imageView1.setVisibility(View.GONE);
tv1.setVisibility(View.GONE);
pb1.setVisibility(View.GONE); fy1.setVisibility(View.GONE);
}
}
}
);
看上去他們有很多不同,實際使用的話,如果你的WebView只是用來處理一些html的頁面內容,只用WebViewClient就行了,如果需要更豐富的處理效果,比如JS、進度條等,就要用到WebChromeClient。
更多的時候,你可以這樣:
WebView webView;
webView= (WebView) findViewById(R.id.webview);
webView.setWebChromeClient(new WebChromeClient());
webView.setWebViewClient(new WebViewClient());
webView.getSettings().setJavaScriptEnabled(true);
webView.loadUrl(url);
當然,有些更精彩的內容還是需要你自己新增的
相關文章
- WebView使用詳解——WebViewClient與常用事件監聽WebViewclient事件
- &與&&, |與||區別
- ??與?:的區別
- <section>與<article> 區別
- showModal()與show() 區別
- localStorage與sessionStorage 區別Session
- mouseenter與mouseover區別
- GET與POST區別
- put與putIfAbsent區別
- JavaScript 與TypeScript區別JavaScriptTypeScript
- animation與transition 區別
- classList與className區別
- NIO與IO區別
- match()與exec()區別
- JavaScript與ECMAScript 區別JavaScript
- currentTarget與target區別
- 區別mouseover與mouseenter?
- offset與style區別
- onmouseover與onmouseenter區別
- 運算子與= 區別
- MySQL的@與@@區別MySql
- prop()與attr()區別
- #include與#include區別
- mybatis #與$的區別MyBatis
- Null 與 “” 的區別Null
- exp與expdp區別
- expimp與expdpimpdp區別
- in與exist , not in與not exist 的區別
- __weak與__block區別,深層理解兩者區別BloC
- 值型別與引用型別的區別型別
- JAVA 基本型別與 引用型別區別Java型別
- 耦合與聚合的區別比單體與微服務區別更重要微服務
- HashMap底層實現原理/HashMap與HashTable區別/HashMap與HashSet區別HashMap
- PHPCookie與Session的使用與區別PHPCookieSession
- define與typedef區別與聯絡
- CentOS 與 Ubuntu 的區別CentOSUbuntu
- artice與section的區別
- GET 與 POST 的區別