BitmapFactory.Options options;
options.inJustDecodeBounds = false;
options.inPreferredConfig = Config.RGB_565;
options.inDither = true;
内存占用情况好了很多。赞stackoverflow。
BitmapFactory.Options options;
options.inJustDecodeBounds = false;
options.inPreferredConfig = Config.RGB_565;
options.inDither = true;
内存占用情况好了很多。赞stackoverflow。