ProgressBar

I make an application loads a webview that loads a website but is blank until the page loads. I put a progressbar while loading the page but not how. Thank you.
 

mc73

Well-Known Member
Licensed User
Longtime User
A progress bar would need to know the duration or bytes of the page. I would suggest simply placing a progressDialog instead, and hide it when loading is finished.
 
Upvote 0

mc73

Well-Known Member
Licensed User
Longtime User
If I understand correctly the problem, you could use something like this:
B4X:
Sub WebView1_PageFinished (Url As String)
    progressdialoghide
End Sub
 
Upvote 0
Top