Hi
Which method is faster when setting an image bitmap between?
1. Each time use
or
2. When app starts for example in main
2.1 Save the image out of Dir.Assets to a folder e.g. file.dirdefaultexternal, then use
3. and using SetBackgroundImage method.
Which method is faster when setting an image bitmap between?
1. Each time use
B4X:
imgx.bitmap = loadbitmap(file.dirassets, "image.png")
2. When app starts for example in main
2.1 Save the image out of Dir.Assets to a folder e.g. file.dirdefaultexternal, then use
B4X:
imgx.bitmap = loadbitmap(file.dirdefaultexternal, "app/image.png")
3. and using SetBackgroundImage method.