I have placed all of jpg files in dir.defaultexternal. When I try to use the following:
I get "error loading bitmap". I find that I have first copy the file to File.DirAssets then use
to get this to work. Not a problem, just wondering why I can't load directly from DirDefaultExternal
B4X:
imageview.Bitmap=LoadBitmap(File.DirDefaultExternal,"imagefile.jpg")
I get "error loading bitmap". I find that I have first copy the file to File.DirAssets then use
B4X:
imageview.Bitmap=LoadBitmap(File.DirAssets, "imagefile.jpg")
to get this to work. Not a problem, just wondering why I can't load directly from DirDefaultExternal