seyedjmb4a New Member Apr 2, 2022 #1 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: Apr 2, 2022
Hello, I want the Loading message to be displayed in Web View when a user clicks on a link. What should I do?
MicroDrie Well-Known Member Licensed User Longtime User Apr 3, 2022 #2 Enter two searches for "loading message" how to display it for "Call B4A Sub from WebView" to display "the Loading message" and load the webview with new content Upvote 0
Enter two searches for "loading message" how to display it for "Call B4A Sub from WebView" to display "the Loading message" and load the webview with new content
mc73 Well-Known Member Licensed User Longtime User Apr 3, 2022 #3 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
B4X: sub yourWebView__OverrideUrl (Url As String) As Boolean progressDialogShow("Loading...") return false end sub sub yourWebView_PageFinished (Url As String) progressDialogHide end sub