欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android 图片缓存机制的深入理解

程序员文章站 2023-11-28 23:45:28
android 图片缓存机制的深入理解 android加载一张图片到用户界面是很简单的,但是当一次加载多张图片时,情况就变得复杂起来。很多情况下(像listview、gr...

android 图片缓存机制的深入理解

android加载一张图片到用户界面是很简单的,但是当一次加载多张图片时,情况就变得复杂起来。很多情况下(像listview、gridview或viewpager等组件),屏幕上已显示的图片和即将滑动到当前屏幕上的图片数量基本上是没有限制的。

这些组件通过重用已经移除屏幕的子视图来将降低内存的使用,垃圾回收器也会及时释放那些已经不再使用的已下载的图片,这些都是很好的方法,但是为了保持一个流畅的、快速加载的用户界面,就应该避免当再次回到某个页面时而重新处理图片。内存缓存和磁盘缓存可以帮我们做到这些,它们允许组件快速地重新加载已处理好的图片。

使用内存缓存

内存缓存允许快速地访问图片,但它以占用app宝贵的内存为代价。lrucache类(api level 4的support library也支持)特别适合来做图片缓存,它使用一个强引用的linkedhashmap来保存最近使用的对象,并且会在缓存数量超出预设的大小之前移除最近最少使用的对象。

说明:以前流行的内存缓存方案是使用软引用或弱引用来缓存图片,然而现在不推荐这样做了,因为从android 2.3(api level 9)起,垃圾收集器更倾向于先回收软引用或弱引用,这样就使它们变得低效。另外在android 3.0(api level 11)之前,图片的像素数据是存储在本地内存(native memory)中的,它以一种不可预测的方式释放,因此可能会导致app超过内存限制甚至崩溃。

为了给lrucache设置一个合适的大小,以下是应该考虑的一些因素:

1.你的activity或app的可用内存是多少?

2.一次展示到屏幕上的图片是多少?有多少图片需要预先准备好以便随时加载到屏幕?

3.设备的屏幕尺寸和密度是多少?像galaxy nexus这样的高分辨率(xhdpi)设备比nexus s这样分辨率(hdpi)的设备在缓存相同数量的图片时需要更大的缓存空间。

4.图片的尺寸和配置是怎样的?每张图片会占用多少内存?

5.图片的访问频率如何?是否有一些图片比另一些访问更加频繁?如果这样的话,或许可以将某些图片一直保存在内存里或者针对不同的图片分组设置不同的lrucache对象。

6.你能否平衡图片质量和数量之间的关系?有时候存储更多低质量的图片更加有用,当在需要的时候,再通过后台任务下载高质量的图片。

这里没有一个具体的大小和计算公式适用于所有的app,你需要分析你的使用情况并得到一个合适的方案。当一个缓存太小时会导致无益的额外的开销,而缓存太大时也可能会引起java.lang.outofmemory异常,另外缓存越大,留给app其他部分的内存相应就越小。

这里是一个为图片设置lrucache的示例:

private lrucache<string, bitmap> mmemorycache; 
 
@override 
protected void oncreate(bundle savedinstancestate) { 
  ... 
  // get max available vm memory, exceeding this amount will throw an 
  // outofmemory exception. stored in kilobytes as lrucache takes an 
  // int in its constructor. 
  final int maxmemory = (int) (runtime.getruntime().maxmemory() / 1024); 
 
  // use 1/8th of the available memory for this memory cache. 
  final int cachesize = maxmemory / 8; 
 
  mmemorycache = new lrucache<string, bitmap>(cachesize) { 
    @override 
    protected int sizeof(string key, bitmap bitmap) { 
      // the cache size will be measured in kilobytes rather than 
      // number of items. 
      return bitmap.getbytecount() / 1024; 
    } 
  }; 
  ... 
} 
 
public void addbitmaptomemorycache(string key, bitmap bitmap) { 
  if (getbitmapfrommemcache(key) == null) { 
    mmemorycache.put(key, bitmap); 
  } 
} 
 
public bitmap getbitmapfrommemcache(string key) { 
  return mmemorycache.get(key); 
} 

说明:在上述例子中,我们分配了应用内存的1/8作为缓存大小,在一个normal/hdpi的设备上最少也有4mb(32/8)的大小。一个800*480分辨率的屏幕上的一个填满图片的gridview大概占用1.5mb(800*480*4byte)的内存,因此该cache至少可以缓存2.5页这样的图片。

当加载一张图片到imageview时,首先检查lrucache,如果找到图片,就直接用来更新imageview,如果没找到就开启一个后台线程来处理:

public void loadbitmap(int resid, imageview imageview) { 
  final string imagekey = string.valueof(resid); 
 
  final bitmap bitmap = getbitmapfrommemcache(imagekey); 
  if (bitmap != null) { 
    mimageview.setimagebitmap(bitmap); 
  } else { 
    mimageview.setimageresource(r.drawable.image_placeholder); 
    bitmapworkertask task = new bitmapworkertask(mimageview); 
    task.execute(resid); 
  } 
} 

上述线程中,在解码图片之后,也需要把它添加到内存缓存中:

class bitmapworkertask extends asynctask<integer, void, bitmap> { 
  ... 
  // decode image in background. 
  @override 
  protected bitmap doinbackground(integer... params) { 
    final bitmap bitmap = decodesampledbitmapfromresource( 
        getresources(), params[0], 100, 100)); 
    addbitmaptomemorycache(string.valueof(params[0]), bitmap); 
    return bitmap; 
  } 
  ... 
} 

使用磁盘缓存

虽然内存缓存在快速访问最近使用的图片时是很有用的,但是你无法保证你所需要的图片就在缓存中,类似gridview这样展示大量数据的组件可以很轻易地就占满内存缓存。你的app也可能被类似电话这样的任务打断,当app被切换到后台后也可能被杀死,内存缓存也可能被销毁,一旦用户回到之前的界面,你的app依然要重新处理每个图片。

磁盘缓存可以用来辅助存储处理过的图片,当内存缓存中图片不可用时,可以从磁盘缓存中查找,从而减少加载次数。当然,从磁盘读取图片要比从内存读取慢并且读取时间是不可预期的,因此需要使用后台线程来读取。

说明:contentprovider 可能是一个合适的存储频繁访问的图片的地方,比如在image gallery应用中。

这里的示例代码是从android源代码中剥离出来的disklrucache,以下是更新后的实例代码,在内存缓存的基础上增加了磁盘缓存:

private disklrucache mdisklrucache; 
private final object mdiskcachelock = new object(); 
private boolean mdiskcachestarting = true; 
private static final int disk_cache_size = 1024 * 1024 * 10; // 10mb 
private static final string disk_cache_subdir = "thumbnails"; 
 
@override 
protected void oncreate(bundle savedinstancestate) { 
  ... 
  // initialize memory cache 
  ... 
  // initialize disk cache on background thread 
  file cachedir = getdiskcachedir(this, disk_cache_subdir); 
  new initdiskcachetask().execute(cachedir); 
  ... 
} 
 
class initdiskcachetask extends asynctask<file, void, void> { 
  @override 
  protected void doinbackground(file... params) { 
    synchronized (mdiskcachelock) { 
      file cachedir = params[0]; 
      mdisklrucache = disklrucache.open(cachedir, disk_cache_size); 
      mdiskcachestarting = false; // finished initialization 
      mdiskcachelock.notifyall(); // wake any waiting threads 
    } 
    return null; 
  } 
} 
 
class bitmapworkertask extends asynctask<integer, void, bitmap> { 
  ... 
  // decode image in background. 
  @override 
  protected bitmap doinbackground(integer... params) { 
    final string imagekey = string.valueof(params[0]); 
 
    // check disk cache in background thread 
    bitmap bitmap = getbitmapfromdiskcache(imagekey); 
 
    if (bitmap == null) { // not found in disk cache 
      // process as normal 
      final bitmap bitmap = decodesampledbitmapfromresource( 
          getresources(), params[0], 100, 100)); 
    } 
 
    // add final bitmap to caches 
    addbitmaptocache(imagekey, bitmap); 
 
    return bitmap; 
  } 
  ... 
} 
 
public void addbitmaptocache(string key, bitmap bitmap) { 
  // add to memory cache as before 
  if (getbitmapfrommemcache(key) == null) { 
    mmemorycache.put(key, bitmap); 
  } 
 
  // also add to disk cache 
  synchronized (mdiskcachelock) { 
    if (mdisklrucache != null && mdisklrucache.get(key) == null) { 
      mdisklrucache.put(key, bitmap); 
    } 
  } 
} 
 
public bitmap getbitmapfromdiskcache(string key) { 
  synchronized (mdiskcachelock) { 
    // wait while disk cache is started from background thread 
    while (mdiskcachestarting) { 
      try { 
        mdiskcachelock.wait(); 
      } catch (interruptedexception e) {} 
    } 
    if (mdisklrucache != null) { 
      return mdisklrucache.get(key); 
    } 
  } 
  return null; 
} 
 
// creates a unique subdirectory of the designated app cache directory. tries to use external 
// but if not mounted, falls back on internal storage. 
public static file getdiskcachedir(context context, string uniquename) { 
  // check if media is mounted or storage is built-in, if so, try and use external cache dir 
  // otherwise use internal cache dir 
  final string cachepath = 
      environment.media_mounted.equals(environment.getexternalstoragestate()) || 
          !isexternalstorageremovable() ? getexternalcachedir(context).getpath() : 
              context.getcachedir().getpath(); 
 
  return new file(cachepath + file.separator + uniquename); 
} 

说明:初始化磁盘缓存需要磁盘操作因此它不应在主线程进行,然而这意味着有可能在磁盘缓存尚未初始化之前就有访问操作发生,为了解决这个问题,在上面的实现中,使用一个锁对象来确保只有在磁盘缓存初始化之后才会从磁盘缓存读取数据。

内存缓存可以直接在ui线程读取,然而磁盘缓存必须在后台线程检查,磁盘操作不应该在ui线程发生。当图片处理完毕后,务必将最终的图片添加到内存缓存和磁盘缓存以备后续使用。

以上就是对android 图片缓存机制的详解,如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!