Android Question Webview value to activity variable

Mauricio Pereira

Member
Licensed User
Longtime User
I have a webview with html table (B4A) to be filled by the user. For example, in the cell (1,1) of the table will be placed a value of 100. How can I get this value from webview and put in a variable of my activity ?
Apologies for the English away from perfection.
 

ronell

Well-Known Member
Licensed User
Longtime User
you can add javascript to get content from html

B4X:
Dim Javascript As String
    Javascript="JavaScriptHere"
    WebViewExtras1.executeJavascript(Javascript)
 
Upvote 0
Top