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

python - No exponential form of the z-axis in matplotlib-3D-plots -

php - Best Light server (Linux + Web server + Database) for Raspberry Pi -

c# - "Newtonsoft.Json.JsonSerializationException unable to find constructor to use for types" error when deserializing class -