您的位置:首页 > 移动开发 > Android开发

android加载大图片时oom问题处理

2017-02-06 17:54 453 查看
忘记从哪看来的了,但是感觉挺好用的。

/**
*防止加载大图片时 ,oom错误
*/
public static Bitmap readBitMap(Context context, int resId) {
BitmapFactory.Options opt = new BitmapFactory.Options();
opt.inPreferredConfig = Bitmap.Config.RGB_565;
opt.inPurgeable = true;
opt.inInputShareable = true;
InputStream is = context.getResources().openRawResource(resId);
return BitmapFactory.decodeStream(is, null, opt);
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android 大图片oom