[Solved] My application crashes when i load huge amount of bitmaps in arraylist
If all of your images are similarly sized, you are attempting to allocate ~2028601104 bytes = ~1981055KB = ~1934MB. You have 64MB or less on most Android devices that your app can use. The image that you failed on is 22050012 bytes in size, when decoded and perhaps scaled. That is equivalent to 2347 x … Read more