djveleno Active Member Licensed User Longtime User Sep 21, 2013 #1 How can I upload an image from a subdirectory? I have an app that involves multiple folders that contain images, I would keep separate images. Using this code, but it does not work: B4X: ImageView1.Bitmap = LoadBitmap(File.DirAssets & /"automobili", ImageFiles(0)) Thanks to all
How can I upload an image from a subdirectory? I have an app that involves multiple folders that contain images, I would keep separate images. Using this code, but it does not work: B4X: ImageView1.Bitmap = LoadBitmap(File.DirAssets & /"automobili", ImageFiles(0)) Thanks to all
Ohanian Active Member Licensed User Longtime User Sep 21, 2013 #2 Hello, try this one : B4X: ImageView1.InitializeSample(File.DirAssets, "images/" & "sample.jpg", 40%x, 30%x) Upvote 0
Hello, try this one : B4X: ImageView1.InitializeSample(File.DirAssets, "images/" & "sample.jpg", 40%x, 30%x)
djveleno Active Member Licensed User Longtime User Sep 21, 2013 #3 thanks a lot!! its work fine.... I was wrong the syntax. Upvote 0