Android Question Web view reached end of document

Pedro Caldeira

Active Member
Licensed User
Longtime User
Hello All,
I want to to use a view to display a html EULA to the user on first install.
I have a Agree button in the panel outside the WebView disabled by default.
I would like to enable it when the user scrolls to the end of the document.
Any ideas on how to do that?

Thanks in advance
 

JohnC

Expert
Licensed User
Longtime User
If you have control over the contents of the html EULA, you could modify it and add an "Agree" button at the bottom of html page, then detect the button press using the webview_override event sub.
 
Upvote 0

Pedro Caldeira

Active Member
Licensed User
Longtime User
If you have control over the contents of the html EULA, you could modify it and add an "Agree" button at the bottom of html page, then detect the button press using the webview_override event sub.
I do have control. Good idea. Going to dig around to learn how to do that. Thanks
 
Upvote 0
Top