lixplor / android-Q-A

🐞 android related questions and answers
0 stars 0 forks source link

UIL加载本地文件内存过大 #51

Closed lixplor closed 7 years ago

lixplor commented 7 years ago

UIL加载本地文件内存过大

lixplor commented 7 years ago

解决办法: 加入选项

opt = new BitmapFactory.Options();
        opt.inPreferredConfig = Bitmap.Config.RGB_565;
        opt.inPurgeable = true;
        opt.inInputShareable = true;
        localImageOptions = new DisplayImageOptions.Builder()
                .resetViewBeforeLoading(true)
                .decodingOptions(opt)
                .imageScaleType(ImageScaleType.EXACTLY)
                .showImageForEmptyUri(R.mipmap.img_no_photos)
                .showImageOnLoading(R.mipmap.img_no_photos)
                .showImageOnFail(R.mipmap.img_no_photos)
                .cacheInMemory(false)
                .cacheOnDisk(false)
                .considerExifParams(true)
                .build();