How I can use the FindListener in webviewextras2.20 to count number of the results of the FindAllAsynch?
Is there other method to do It?
Any help will be appreciated!
Sub Globals
Private WebView1 As WebView
Private we As WebViewExtras
Private fl As FindListener
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("1")
we.Initialize(WebView1)
'fl.Initialize(??? EventName???)
Sub btnFind_Click
Dim searchword As String
we.FindAllAsynch(searchword) ' highlight all found - ok
fl ??????????? ' How retry the number of matches?
end Sub