Android Question show downloaded(httputils) image by gallery intent

ArminKH

Well-Known Member
Hi
how is possible to show an image which downloaded by using httputils (show by gallery - intent)?
i want when my download finished then my downloaded image show by gallery
@DonManfred as you said on httputils2 thread i create a new thread
Now please help me if is possible
here is my test code
B4X:
    Dim ShowCover As Intent
        ShowCover.Initialize(ShowCover.ACTION_VIEW,"")
        ShowCover.SetType("image/*")
        ShowCover.PutExtra("input",job.GetBitmap )
        StartActivity(ShowCover)
tnx
 
Last edited:
Top