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 -

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

Why does a .NET 4.0 program produce a system.unauthorizedAccess error on a Windows Server 2012 machine with .NET 4.5 installed? -