項目要求,在WebView中點擊搜索關鍵字,加載其餘Web頁面時,須要在一個文本輸入框中,實時顯示關鍵字html
事實上,這種點擊,是WebView內的,並無跳出這個WebView,Activity也沒有經歷任何生命週期。看似沒法捕捉java
事實上很簡單,經過重寫shouldOverrideUrlLoading(),能夠獲取各類點擊事件對應的URL。解析其參數列表,看其中有沒有web
keys關鍵字,獲取其value,解析、顯示就能夠了瀏覽器
shouldOverrideUrlLoading() 方法
返回true 代表點擊網頁裏面的連接仍是在當前的webview裏跳轉,
返回false 跳到其餘瀏覽器
其中,獲取URL中的參數Map的類URLUtil.java,見另外一篇博文: URL網址參數解析類
private class MyWebViewClient extends WebViewClient { @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { if(url.startsWith("intent://")){ return true; } super.shouldOverrideUrlLoading(view, url); if (TextUtils.isEmpty(url)) return true; //如下內容 用於:頁面中點擊其餘關鍵字搜索時,在最上端的EditText中添加hint DebugUtil.d("myc", "url = " + url);
Map<String, String> mapRequest = URLUtil.getRequestParamMap(url); if(mapRequest!=null && mapRequest.size()!=0) { String keyWord = mapRequest.get("keys"); //獲取關鍵字字段 DebugUtil.d("myc", "keyWord = " + keyWord); if (!TextUtils.isEmpty(keyWord)) { try { String result = URLDecoder.decode(keyWord, "UTF-8"); //用Android自帶的URLDecoder解析成中文 setKeyword(result); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } } } return true; } @Override public void onPageStarted(WebView view, String url, Bitmap favicon) { super.onPageStarted(view, url, favicon); } @Override public void onPageFinished(WebView view, String url) { super.onPageFinished(view, url); } @Override public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) { super.onReceivedError(view, errorCode, description, failingUrl); } }