资产文件夹中的图像 - 设置图像到imageView的内存不足异常

时间:2013-04-09 15:26:30

标签: android android-imageview out-of-memory android-assets

我有简单的代码(从资产文件夹向imageView添加图片):

InputStream path = getAssets().open("z1_1.jpg");
Bitmap bit = BitmapFactory.decodeStream(path);
imageView.setImageBitmap(bit);

当此代码执行时抛出错误:

FATAL EXCEPTION: main
01-10 05:24:32.492: E/AndroidRuntime(2303): java.lang.OutOfMemoryError

任何sugestions问题在哪里?

0 个答案:

没有答案