Android Question Webview page loading message

seyedjmb4a

New Member
Hello, I want the Loading message to be displayed in Web View when a user clicks on a link. What should I do?
 
Last edited:

MicroDrie

Well-Known Member
Licensed User
Longtime User
Enter two searches
  1. for "loading message" how to display it
  2. for "Call B4A Sub from WebView" to display "the Loading message" and load the webview with new content
 
Upvote 0

mc73

Well-Known Member
Licensed User
Longtime User
B4X:
sub yourWebView__OverrideUrl (Url As String) As Boolean
progressDialogShow("Loading...")
return false
end sub
sub yourWebView_PageFinished (Url As String)
progressDialogHide
end sub
 
Upvote 0
Top