首页 > 学院 > 开发设计 > 正文

解决加载图片时OOM异常的一种方法

2019-11-06 09:44:43
字体:
来源:转载
供稿:网友

       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);}

最后再通过View.setImageBitmap  方法加载图片即可


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表