Hello, I'm using smb library to list all images placed on my file server, and load any image when it's necessary. So, I dont want to download them before showing it... There is any possibility to use LoadBitmap with the network path, instead using the local file path?
Sample:
Local use:
Network use:
Thanks!
Sample:
Local use:
B4X:
ImageView_Product.Bitmap = LoadBitmap(File.DirAssets,"image.jpg")
Network use:
B4X:
ImageView_Product.Bitmap = LoadBitmap("smb://192.168.25.200/share/images","image.jpg")
Thanks!