Android Question Download Html File in WebView

Hello
I need code to download the webview Html file when I load a page in webview and when the webview is loaded
My English is not good!
1.Load Url in WebView
2.When Load WebView PageFinished
3.Download File Html Webview (When PageFinished !)
 

jahswant

Well-Known Member
Licensed User
Longtime User
Also try this code.
B4X:
Dim j As HttpJob
j.Initialize("", Me)
j.Download("https://www.google.com")
Wait For (j) JobDone(j As HttpJob)
If j.Success Then
   Log(j.GetString) ' HTML page string.
End If
j.Release
 
Upvote 0
Top