[Android] 对自定义图片浏览器经常内存溢出的一些优化

时间:2022-09-03 21:12:49

首先关于异步加载图片可以参见 夏安明 的博客:http://blog.csdn.net/xiaanming/article/details/9825113

这篇文章最近有了新的更改,大概看了一下,内容更完善了。而我参考他之前的代码,发现了很多与内存有关的问题,这里记录一下发现的问题和解决方法。

本文地址:http://www.cnblogs.com/rossoneri/p/4284478.html

首先上个功能图:

1.本地图片浏览器做成对话框的形式,可以显示文件夹

[Android] 对自定义图片浏览器经常内存溢出的一些优化

2. 图片支持多选

[Android] 对自定义图片浏览器经常内存溢出的一些优化

3. 图片点开可以大图浏览

[Android] 对自定义图片浏览器经常内存溢出的一些优化

4.用 ViewPager 来添加图片左右连续浏览效果

[Android] 对自定义图片浏览器经常内存溢出的一些优化

OK,看完可以大概了解了具体的功能。

可以想到,整个过程需要处理显示大量的图片,图片虽然可以选择在不显示的时候回收掉,但有很多地方有返回操作,为了操作效果的流畅,不可能点一次返回就加载一次。尤其是viewPager的地方,加载的是清楚的大图,左右滑动过程也是要预先加载相邻的图片,如果左右滑动次数多的话,就要保存一定数量的加载过的图片,这些过程都需要考虑内存消耗。说实话,一开始做完这个图片浏览器后,程序经常因为oom崩掉,在经过一番优化后,现在已经没有程序崩溃的情况出现了。整个过程学习到了很多东西,现在好好梳理一边记下来。

首先关于Android线程

当你第一次启动一个Android程序的时候,一个叫做“main”的线程就被自动创建了,这个主线程也叫做UI线程。它非常重要,因为它负责分配事件给相应的控件,包括绘图事件。它也是你与控件交互的线程。比如说,一旦你点击屏幕上的一个按钮,UI线程就会派发触摸事件到控件上,控件就会设置为按下的状态并且传递一个invalidate请求(根据invalidate()方法应该是刷新界面请求)。UI线程再将请求弹出消息队列并让控件重新绘制自己。

这个单线程模式可以导致Android应用程序体验性降低。一旦所有的事件都在一个线程中进行耗时的操作,比如说在这个线程上进行网络连接,数据库访问,会阻塞程序的界面响应。在长时间的后台操作中,没有事件会被派发,包括绘图事件。从用户角度来看,应用出现了停顿。更糟糕的是,如果UI线程被阻塞一段时间(大概5秒),用户就会看到臭名昭著的“程序无反应”的对话框了。

Whenever you first start an Android application, a thread called "main" is automatically created. The main thread, also called the UI thread, is very important because it is in charge of dispatching the events to the appropriate widgets and this includes the drawing events. It is also the thread you interact with Android widgets on. For instance, if you touch the a button on screen, the UI thread dispatches the touch event to the widget which in turn sets its pressed state and posts an invalidate request to the event queue. The UI thread dequeues the request and notifies the widget to redraw itself.

This single thread model can yield poor performance in Android applications that do not consider the implications. Since everything happens on a single thread performing long operations, like network access or database queries, on this thread will block the whole user interface. No event can be dispatched, including drawing events, while the long operation is underway. From the user's perspective, the application appears hung. Even worse, if the UI thread is blocked for more than a few seconds (about 5 seconds currently) the user is presented with the infamous "application not responding" (ANR) dialog.

http://android-developers.blogspot.jp/2009/05/painless-threading.html

翻译太渣,点我看原文

所以考虑到UI线程的流畅性,整个过程还需要考虑使用多线程进行异步加载图片。

另外在打开图片浏览器的时候需要进行图片查询,所以在主界面上增加了progress dialog使其更加友好,如图:

[Android] 对自定义图片浏览器经常内存溢出的一些优化

下面上一些关键代码,结合代码来说优化内存的方法:

对话框就在打开图片浏览器的时候显示即可

mProgressDialog = ProgressDialog.show(mActivity, null, mActivity.getResources().getString(R.string.pic_selector_progressdlg), true);// 显示读图进度条

于此同时,开启线程查询本地图片,查询完成后发出消息

 new Thread(new Runnable() {
@Override
public void run() {
Uri mImageUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI;// 外部存储的url
ContentResolver mContentResolver = mActivity.getContentResolver();// 创建ContentResolver实例 Cursor mCursor = mContentResolver.query(
mImageUri,
null, // 从URL中查找相关类型的文件保存并用cursor指向它
MediaStore.Images.Media.MIME_TYPE + "=? or " + MediaStore.Images.Media.MIME_TYPE + "=?",
new String[] { "image/jpeg", "image/png" },
MediaStore.Images.Media.DATE_MODIFIED); while (mCursor.moveToNext()) {
// 获取图片路径
String path = mCursor.getString(mCursor.getColumnIndex(MediaStore.Images.Media.DATA)); // 说明1
File file = new File(path);
if (file.exists()) {
// get folder name
String folder = new File(path).getParentFile().getName(); // put image in to HashMap according to the folder name
if (!mFolderMap.containsKey(folder)) {
List<String> childList = new ArrayList<String>();
childList.add(path);
mFolderMap.put(folder, childList);
} else {
mFolderMap.get(folder).add(path);
}
} }
mCursor.close();
mHandler.sendEmptyMessage(SCAN_OK);
}
}).start();

查询图片路径并按文件夹分类

关于说明1:因为Android系统的Gallary会在开机之后对本地的文件做一次查找统计,这个统计只有一次,所以会导致一个问题:开机之后你可以浏览所有存在的图片,当你删除某一张图片后,你会看不见这张图,但这张图的路径信息还在系统中保存,所以我使用cursor进行本地查询的时候也还是可以得到这张删除的图片的路径的,但这个路径无法显示图片,所以我用

File file = new File(path);
if (file.exists()) { ... }

来处理图片不存在的情况。至于怎么刷新这个系统保存有路径的信息,我也找到了方法,往后会专门写下来记录一下。已更新:http://www.cnblogs.com/rossoneri/p/4239152.html

查询到图片路径之后,就根据文件夹来分开保存在不同的HashMap里的List<String>中。

查询完毕发送消息,收到消息后关闭对话框,gridview显示文件夹

private Handler mHandler = new Handler() {
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
switch (msg.what) {
case SCAN_OK:
mProgressDialog.dismiss();
mFolderAdapter = new FolderAdapter(mActivity, mList = subGroupOfImage(mFolderMap), mGridShowFolder);
mGridShowFolder.setAdapter(mFolderAdapter);
break;
}
}
};

响应消息

有了路径就要使用异步加载图片了,也就是在用户滑动gridview或者listview的时候,给新的内容加载图片,并释放掉划出屏幕的图片(如果内存占满的话)。我在网上看的资料大多讲Android默认分给虚拟机中图片的堆栈大小只有8M。至于8M的概念,其实是在默认情况下android进程的内存占用量为16M,因为Bitmap他除了java中持有数据外,底层C++的 skia图形库还会持有一个SKBitmap对象,因此一般图片占用内存推荐大小应该不超过8M。这个可以调整,编译源代码时可以设置参数。[参见这里]

总之是一块非常小的内存,那么要显示图片就需要对图片进行一些处理。

一些处理意见:

自定义一些处理图像的选项

BitmapFactory.Options options = new BitmapFactory.Options();

获得option对象后,有以下处理方法:

options.inJustDecodeBounds = true;
BitmapFactory.decodeFile(path, options);
options.inJustDecodeBounds = false;

设置为true后,表示解析Bitmap对象,该对象不占内存。然后解析path路径对应的图片,图片尺寸保存在 options.outWidth 和 options.outHeight 中。

这个方法主要是想不占用任何内存的情况下获得要显示图片的尺寸来进行缩放比例的计算。

 /**
* 根据View(主要是ImageView)的宽和高来计算Bitmap缩放比例。默认不缩放
*
* @param options
* @param width
* @param height
*/
private int computeScale(BitmapFactory.Options options, int viewWidth, int viewHeight) {
int inSampleSize = 1; // 默认缩放比例1 即不缩放
if (viewWidth == 0 || viewHeight == 0) { // 如果宽高都为0 即不存在 返回1
return inSampleSize;
}
int bitmapWidth = options.outWidth;// 获得图片的宽和高
int bitmapHeight = options.outHeight; // 假如Bitmap的宽度或高度大于我们设定图片的View的宽高,则计算缩放比例
if (bitmapWidth > viewWidth || bitmapHeight > viewWidth) {
int widthScale = Math.round((float) bitmapWidth / (float) viewWidth);
int heightScale = Math.round((float) bitmapHeight / (float) viewWidth); // 为了保证图片不缩放变形,我们取宽高比例最小的那个
inSampleSize = widthScale < heightScale ? widthScale : heightScale;
}
return inSampleSize;
}

计算缩放比例的方法

获得缩放比例后就可以使用这个比例来显示缩略图,这样就可以节省不少内存。

 private Bitmap loadBitmap(String path, int n) {    //n 缩放比例
InputStream inputStream = null;
if (!path.isEmpty()) {
try {
inputStream = new FileInputStream(path);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
} BitmapFactory.Options opts = new BitmapFactory.Options();
opts.inPreferredConfig = Bitmap.Config.RGB_565; // 减小画面的精细度,每个像素占内存减少
opts.inPurgeable = true; // 可以被回收
opts.inInputShareable = true;
if (n != 0) {
opts.inSampleSize = n;
}
Bitmap bmp = BitmapFactory.decodeStream(inputStream, null, opts);
return bmp;
}

使用获得的缩放比例显示缩略图

这里生成bitmap的时候用到了几个BitmapFactory.Options的属性

用到的属性说明如下:

If this is non-null, the decoder will try to decode into this
internal configuration. If it is null, or the request cannot be met,
the decoder will try to pick the best matching config based on the
system's screen depth, and characteristics of the original image such
as if it has per-pixel alpha (requiring a config that also does). Image are loaded with the Bitmap.Config.ARGB_8888} config by default. //Bitmap.Config Because of the poor quality of ARGB_4444, it is advised to use {@link #ARGB_8888} instead.
private static Config sConfigs[] = {
null, ALPHA_8, null, RGB_565, ARGB_4444, ARGB_8888
};

inPreferredConfig位图的精细度,即每个像素的色彩位数,节省内存还是低点好。

Deprecated. As of android.os.Build.VERSION_CODES.LOLLIPOP, this is ignored. In android.os.Build.VERSION_CODES.KITKAT and below, if this is set to true, then the resulting bitmap will allocate its pixels such that they can be purged if the system needs to reclaim memory. In that instance, when the pixels need to be accessed again (e.g. the bitmap is drawn, getPixels() is called), they will be automatically re-decoded.

For the re-decode to happen, the bitmap must have access to the encoded data, either by sharing a reference to the input or by making a copy of it. This distinction is controlled by inInputShareable. If this is true, then the bitmap may keep a shallow reference to the input. If this is false, then the bitmap will explicitly make a copy of the input data, and keep that. Even if sharing is allowed, the implementation may still decide to make a deep copy of the input data.

While inPurgeable can help avoid big Dalvik heap allocations (from API level 11 onward), it sacrifices performance predictability since any image that the view system tries to draw may incur a decode delay which can lead to dropped frames. Therefore, most apps should avoid using inPurgeable to allow for a fast and fluid UI. To minimize Dalvik heap allocations use the inBitmap flag instead.

Note: This flag is ignored when used with decodeResource(Resources, int, android.graphics.BitmapFactory.Options) or decodeFile(String, android.graphics.BitmapFactory.Options).

inPurgeable 位图是否能被回收,KITKAT及以下版本可用.建议用inBitmap

Deprecated. As of android.os.Build.VERSION_CODES.LOLLIPOP, this is ignored. In android.os.Build.VERSION_CODES.KITKAT and below, this field works in conjuction with inPurgeable. If inPurgeable is false, then this field is ignored. If inPurgeable is true, then this field determines whether the bitmap can share a reference to the input data (inputstream, array, etc.) or if it must make a deep copy.

inInputShareable 配合inPurgeable使用

If set to a value > 1, requests the decoder to subsample the original image, returning a smaller image to save memory. The sample size is the number of pixels in either dimension that correspond to a single pixel in the decoded bitmap. For example, inSampleSize == 4 returns an image that is 1/4 the width/height of the original, and 1/16 the number of pixels. Any value <= 1 is treated the same as 1. Note: the decoder uses a final value based on powers of 2, any other value will be rounded down to the nearest power of 2.

inSampleSize设置缩放比例,长宽都缩为1/n,所以n建议是2的次方数

通过这些设置,可以降低缩略图的内存占用。

生成缩略图后可以用LruCache保存图片。如果用到图片的时候可以先从这里读,读不到了再根据路径生成图片。

// 获取应用程序的最大内存
final int maxMemory = (int) (Runtime.getRuntime().maxMemory() / 1024); // 用最大内存的1/8来存储图片
final int cacheSize = maxMemory / 8;
mMemoryCache = new LruCache<String, Bitmap>(cacheSize) { // 获取每张图片的大小
@Override
protected int sizeOf(String key, Bitmap bitmap) {
return bitmap.getRowBytes() * bitmap.getHeight() / 1024;
}
};
/**
* 往内存缓存中添加Bitmap
*
* @param key
* @param bitmap
*/
private void addBitmapToMemoryCache(String key, Bitmap bitmap) {
if (getBitmapFromMemCache(key) == null && bitmap != null) {
mMemoryCache.put(key, bitmap);
}
} /**
* 根据key来获取内存中的图片
*
* @param key
* @return
*/
private Bitmap getBitmapFromMemCache(String key) {
return mMemoryCache.get(key);
}

当然在某些操作之后,为了避免可能的oom,可以选择把这部分内存清掉,这就在于自己程序设计的策略了

public void clearCache(){
mMemoryCache.evictAll();
}

ViewPager的优化

viewpager的每一项item都在instantiateItem中处理

@Override
public Object instantiateItem(ViewGroup container, int position) {
}

其显示策略是 根据你点击的 position 提前加载 position-1 和 position+1的item,就是为了左右滑动时可以看起来流畅。

比如我点击了第7个item,pagerAdapter就会同时加载 6,7,8 进去,我向右滑到8, 6就删除掉,加载9进来。然后我再左滑,9删掉,重新加载6。

这里就考虑到我在左右浏览图片的时候,有些加载过的图可以保存在一部分内存中,每次加载前查找一下内存,查到的图片就不再单独生成bitmap了。

@Override
public Object instantiateItem(ViewGroup container, int position) {
// TODO Auto-generated method stub long beforeTime = System.currentTimeMillis(); PicBrowser_ViewPagerItem itemView;
if (mHashMap.containsKey(position)) {
String path = mPathList.get(position);
itemView = mHashMap.get(position);
itemView.setShowHeight(itemHeight);
itemView.reload(path, position); Log.d("TIME", "reload time: " + (System.currentTimeMillis() - beforeTime) + " position:" + position);
} else {
itemView = new PicBrowser_ViewPagerItem(mContext, mMemoryCacheForBmp);
itemView.setShowHeight(itemHeight);
String path = mPathList.get(position);
Bitmap bmp = mMemoryCache.get(path); itemView.setData(path, bmp, position);
// Log.v("viewpager", "setData:" + position);
mHashMap.put(position, itemView);
((ViewPager) container).addView(itemView); Log.d("TIME", "setData time: " + (System.currentTimeMillis() - beforeTime) + " position:" + position);
} clearHashMap(position); return itemView; }

内存有直接reload()图片,没有就setData()生成图片

但这样的话同一时间就会加载多张大图在内存中(我根据操作情况保存了8张)。像平板这样的大屏幕,显示一张大尺寸的bitmap很消耗内存,更何况8张,所以这里一定要优化。

优化的思路很简单,就是加载item的时候用前面的方法生成缩略图 ,缩放比例我直接用4。保存也保存缩略图。当点开item查看的时候,先加载缩略图并放大到窗口显示,加载完毕后再开线程生成要显示的大图。这样最后的效果就是浏览的时候是一张比较模糊的图,但很快这张图就变得十分清晰。

这里还有最后一个问题就是,比如我的显示范围是 500 x 500,比它小的图肯定要缩放到这个尺寸(图片比例不变),但比它大的图用setImageBitmap(mBitmap)放进去后会自动适应大小,那我还要不要对大图尺寸处理一下呢?

一定要。因为不管自动适应的尺寸有多大,系统生成bitmap是根据你给的尺寸生成的,而且生成bitmap占的内存大小是和图片尺寸成正比的。虽然可能一张2000x2000的图片可能才不到100kb,但这个尺寸生成的bitmap可有 2000 x 2000 x 2byte(RGB_565)这么大,快8M了吧,很容易就oom了。所以这个尺寸一定要处理好。

----2015.9.9补 关于位图格式RGB_565 可参考: http://www.cnblogs.com/dahaka/archive/2012/03/03/2374799.html

关于图片更多知识看这里http://www.cocoachina.com/industry/20140812/9363.html

最后就是在某些操作结束后记得把 hashmap啊 list啊 内存啊都清掉,bitmap也要recycle掉,防止内存泄漏(别觉得java无所谓...看看强引用弱引用软引用...)

至少到目前为止我的程序没有再出现OOM的现象了。

最最后,还有一个体验可以优化的地方,就是第二张效果图的地方。在那个界面,如果图片很多的情况下是可以上下滑动浏览的。之前的异步加载就是在这里用到的,每次滑动就把屏幕外的图片回收掉,把进入屏幕的图片加载显示。但有个问题就是如果快速滑动,比如我一下滑到第200个item的地方,它就会从第1张到200张全部加载并删除一遍,而我就得在200的位置等待前面一个个加载一遍(如图),很讨厌。

[Android] 对自定义图片浏览器经常内存溢出的一些优化

所以我就想能不能在快速滑动的时候不加载图片,等停了之后在从当前位置加载。这样省时间,也避免了不可知的情况。还好在源码里找到了相关接口。

在gridview的adapter添加:

 mGridView.setOnScrollListener(new OnScrollListener() {

     @Override
public void onScrollStateChanged(AbsListView view, int scrollState) {
// TODO Auto-generated method stub
Log.v("SCROLL", "onScrollStateChanged");
switch (scrollState) {
case OnScrollListener.SCROLL_STATE_IDLE: //stop
isScrolling = false;
notifyDataSetChanged();
break;
case OnScrollListener.SCROLL_STATE_TOUCH_SCROLL:
isScrolling = false;
notifyDataSetChanged();
break;
case OnScrollListener.SCROLL_STATE_FLING: // scrolling
isScrolling = true;
break;
}
} @Override
public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount) {
// TODO Auto-generated method stub
Log.v("SCROLL", "onScroll");
}
});

在getView中添加

 @Override
public View getView(final int position, View convertView, ViewGroup parent) {
  ...
if(!isScrolling){
// add pics
}else{
// add default image
} ...
}

okay,这样就好了。这个功能也不知道别人怎么实现的,我能想到的就是这样了。(补:看过谷歌官方APIDemos,View下List13.java就实现了这个功能,实现的方法和我想的一样,所以就用它了)

暂时能想到大概就是这些过程,如果有错误也请指出,有遗漏也请补充。

参考资料:

Android完美解决GridView异步加载图片和加载大量图片时出现Out Of Memory问题

解决 bitmap size exceeds VM budget (Out Of Memory 内存溢出)的问题

BaseAdapter中重写getview的心得以及发现convertView回收的机制

[Android] ListView中getView的原理+如何在ListView中放置多个item

[Android] 对自定义图片浏览器经常内存溢出的一些优化的更多相关文章

  1. android通过BitmapFactory&period;decodeFile获取图片bitmap报内存溢出的解决办法

    android通过BitmapFactory.decodeFile获取图片bitmap报内存溢出的解决办法 原方法: public static Bitmap getSmallBitmap(Strin ...

  2. android调用系统图片浏览器裁切后出现黑边

    是这样的:我使用系统的图片浏览器,然后让它自动跳到图片裁切界面,当我们定义了返回的图片大小过大,而我们实际的图片像素达不到时,系统为我们自动地填充了不够的像素成黑色,那么我们怎么样来解决这个问题呢?不 ...

  3. android脚步---简单图片浏览器改变图像透明度

    图片浏览器调用ImageView的setAlpha方法来实现改变图片透明度. main.xml文件如下:三个按钮,两个imageview,,界面定义了两个ImageView,一个是显示局部图片的Ima ...

  4. Android学习笔记:如何高效显示图片,避免内存溢出 和 ImageView无法显示大尺寸的图片

    因为手机的内存资源是有限的,每个app可使用的内存是受限的.而现在采用高分辨率拍的照片往往很大.如果加载时不注意方法,很有可能会引起java.lang.OutofMemoryError: bitmap ...

  5. Android下将图片载入到内存中

    Android的系统的标准默认每一个应用程序分配的内存是16M.所以来说是很宝贵的,在创建应用的时候要尽可能的去节省内存,可是在载入一些大的文件的时候,比方图片是相当耗内存的,一个1.3M的图片,分辨 ...

  6. android progressbar 自定义图片匀速旋转

    项目中需要使用圆形进度条进行数据加载的显示,所以需要两个步骤 1:自定义progressbar滚动图片 2:匀速旋转图片 步骤一:自定义progressbar图片 <ProgressBar an ...

  7. Android -- 简单的图片浏览器

    1. 效果图

  8. Android学习笔记&lowbar;51&lowbar;转android 加载大图片防止内存溢出

    首先来还原一下堆内存溢出的错误.首先在SD卡上放一张照片,分辨率为(3776 X 2520),大小为3.88MB,是我自己用相机拍的一张照片.应用的布局很简单,一个Button一个ImageView, ...

  9. Android开发中如何解决加载大图片时内存溢出的问题

    Android开发中如何解决加载大图片时内存溢出的问题    在Android开发过程中,我们经常会遇到加载的图片过大导致内存溢出的问题,其实类似这样的问题已经屡见不鲜了,下面将一些好的解决方案分享给 ...

随机推荐

  1. 使用Nexus搭建Maven本地仓库

    阅读目录 序 Nexus 本文版权归mephisto和博客园共有,欢迎转载,但须保留此段声明,并给出原文链接,谢谢合作. 文章是哥(mephisto)写的,SourceLink 序 在工作中可能存在有 ...

  2. yield return的作用

    测试1: using UnityEngine; using System.Collections; public class test1 : MonoBehaviour { // Use this f ...

  3. Android --资料集合

    google android 官方教程 http://hukai.me/android-training-course-in-chinese/basics/index.html android视频资料 ...

  4. NopCommerce架构分析之六------自定义RazorViewEngine

    系统中对Razor的支持包括两部分,其中之一就是自定义RazorViewEngine 一.自定义RazorViewEngine 在Global.asax.cs的Application_Start方法中 ...

  5. linux一些常用指令整理

    set number:设置行号 set list:区分tab和空格 按w:一个字一个字跳转 按b:一个字一个字回跳 shift+6:行首 shift+4:行尾 ctrl+v:选中块,再按shift+i ...

  6. do&lbrace;&period;&period;&period;&rcub;while&lpar;0&rpar;的意义和用法&lpar;转载&rpar;

    linux内核和其他一些开源的代码中,经常会遇到这样的代码: do{ ... }while(0) 这样的代码一看就不是一个循环,do..while表面上在这里一点意义都没有,那么为什么要这么用呢? 实 ...

  7. Apache Shiro 认证过程

    3.1.1    示例 Shiro验证Subjects 的过程中,可以分解成三个不同的步骤: 1. 收集Subjects 提交的Principals(身份)和Credentials(凭证): 2. 提 ...

  8. 读书笔记 effctive c&plus;&plus; Item 52 如果你实现了placement new&comma;你也要实现placement delete

    1. 调用普通版本的operator new抛出异常会发生什么? Placement new和placement delete不是C++动物园中最常遇到的猛兽,所以你不用担心你对它们不熟悉.当你像下面 ...

  9. 个人VIM配置实例

    用户 vimrc 文件: "$HOME/.vimrc" " vimrc by lewiyon@hotmail.com " last update 2013-10 ...

  10. 获取用户登陆所在的ip及获取所属信息

    package com.tcl.topsale.download.entity; public class GeoLocation { private String countryCode; priv ...