android - How to search word/terms on a webview -


i made button, when clicked search inside of webview. works dont know how implement next/previous , how remove highlight of words. realized can't remove =/

the button:

 testesearch.setonclicklistener(new view.onclicklistener() {             @override             public void onclick(view v) {                 search("t");              }         });     } 

and method is:

  public void search(string query) {         wv.findallasync(query);      } 

how can next or previous , remove highlight of letters?

thx.


Comments

Popular posts from this blog

java - HTTP Status 500 - An exception occurred processing JSP page /second.jsp at line 15 -

php - Using str_replace to translate a MySQL Table in html -

asp.net mvc - Cannot display error message on Editor or EditorFor -