我在尝试从 Assest 加载位图图像时面临内存不足,下面是我的代码:
AssetManager assetManager = context.getAssets();
InputStream istr = assetManager.open(FILE_NAME);
bitmap = BitmapFactory.decodeStream(istr);
我加载图像的大部分时间都低于异常:
错误/AndroidRuntime(731): java.lang.OutOfMemoryError: 位图大小超出 VM 预算
我已经发表了几篇关于在 ImageView 中管理图像大小的文章。但我的代码甚至没有达到这一点。
请帮忙