kalil
Member
Hi every one i'm new here,
i would like to share multiple images at the same time please i need some help
i tried this code from Erel but it shares only one image how can i share multiple images?
i would like to share multiple images at the same time please i need some help
i tried this code from Erel but it shares only one image how can i share multiple images?
B4X:
Dim FileName As String = "im1.png"
File.Copy(File.DirInternal, FileName, Provider.SharedFolder, FileName)
Dim in As Intent
in.Initialize(in.ACTION_VIEW, "")
Provider.SetFileUriAsIntentData(in, FileName)
'Type must be set after calling SetFileUriAsIntentData
in.SetType("image/*")
StartActivity(in)