I am using the following code to Search and Highligh text within a Webview.
This works great.
How can I clear (remove) the Highlights from the WebView?
B4X:
Sub FindAll (w As WebView, s As String) As Int
Dim r As Reflector
r.Target = w
Return r.RunMethod2("findAll", s, "java.lang.String")
End Sub
How can I clear (remove) the Highlights from the WebView?