Android Question Webview Clear Highlighted Text

Declan

Well-Known Member
Licensed User
Longtime User
I am using the following code to Search and Highligh text within a 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
This works great.
How can I clear (remove) the Highlights from the WebView?
 

DonManfred

Expert
Licensed User
Longtime User
Upvote 0
Top