Android Question getting data back out of webview

tkristensen

Member
Licensed User
Longtime User
I have form in HTML that I am using webview to display.

It has several inputs (checkboxes) that the user can change the value of.

Is there anyway to get the changed values back out to the app?

Is there any event that will tell me the user changed a check box?

Thanks in advance

Tom
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
I have form in HTML that I am using webview to display
Why? Using WebView will only make your app more complicated.
Use B4XPreferencesDialog or create your own form.

Is there anyway to get the changed values back out to the app?
Search for WebViewExtras. You need to inject JavaScript code that will read the values and then call a B4A sub.
 
Upvote 0
Top