Android Question HttpUtils2

Devv

Active Member
Licensed User
Longtime User
Hello

how could i get the percentage completed from HttpUtils2 download ?
i want to see how much % is downloaded from my file how ?
 

wonder

Expert
Licensed User
Longtime User
Upvote 0

Devv

Active Member
Licensed User
Longtime User
Thanks mr wonder

i have another question plz

RSASYNCdownlaoder it is working nicely except with the following code it will not toast the progress

B4X:
Sub Activity_Create(FirstTime As Boolean)
    'Do not forget to load the layout file created with the visual designer. For example:
    'Activity.LoadLayout("Layout1")
    Dim AsyncDownloader As RSAsyncDownloader
    AsyncDownloader.Initialize("AsyncDownloader")
    AsyncDownloader.FileName = "test.apk"
    AsyncDownloader.Directory = File.DirRootExternal
    AsyncDownloader.Download("http://downloader-apk.com/apps/2015/02/19/WhatsApp_Messenger%202.11.528_[www.Downloader-Apk.com].apk")
End Sub

Sub Activity_Resume

End Sub

Sub Activity_Pause (UserClosed As Boolean)

End Sub


Private Sub AsyncDownloader_Started
ToastMessageShow("The download has started.",False)
End Sub

Private Sub AsyncDownloader_Update (Progress As Int)
ToastMessageShow(Progress,False)
End Sub

Private Sub AsyncDownloader_Finished (Result As String)
ToastMessageShow("The download has finished.",False)
End Sub


this is very wired if you placed any url instead of the flowing it will work

any ideas ?
 
Upvote 0
Top