I am working in android... I am a newbie in this field... I developed a webview...i need to search for a particular text inside the webview... I searched about some question
To check continuously text from WebView use this code:
webView.setFindListener(new WebView.FindListener() {
@Override
public void onFindResultReceived(int activeMatchOrdinal, int numberOfMatches, boolean isDoneCounting) {
webView.findAllAsync("Search Text"); //find text for each foundresult
}
});