Hi,
If i have png files in this folder rather than the files folder how can i address them when using as a bitmap? I have tried various metods but none seem to work
Where can i find the correct syntax for addressing various methods of using files in this directory
Many Thanks
If i have png files in this folder rather than the files folder how can i address them when using as a bitmap? I have tried various metods but none seem to work
B4X:
If File.Exists("",image.png) Then
bmpName = LoadBitmapSample("", "image.png", 200dip, 200dip)
If File.Exists("../res/drawable/",image.png) Then
bmpName = LoadBitmapSample("../res/drawable/", "image.png", 200dip, 200dip)
Where can i find the correct syntax for addressing various methods of using files in this directory
Many Thanks