0

我可以从我的应用程序内部打开图库中的图像/图片。但是我在获取大图像时遇到了内存问题。

有没有办法根据图像尺寸显示来自厨房的图像?

请帮我解决这个问题。

4

1 回答 1

1

http://developer.android.com/training/displaying-bitmaps/load-bitmap.html

该链接将指导您如何有效地加载位图,特别是在将缩小版本加载到内存中的主题下

您应该在不使用时回收位图。

                bitmaps.recycle();

位图也存储在从蜂窝开始的堆上。所以在不使用时回收位图。

http://www.youtube.com/watch?v=_CruQY55HOk。如果您遇到内存泄漏,请使用 MAT Analyzer 查找并修复它。该视频有一个关于这个话题的谈话。它还解释了如何管理内存。

如果要显示大量位图,请使用通用图像加载器。使用 listview 或 grdiview 来显示图像。

https://github.com/nostra13/Android-Universal-Image-Loader

它基于惰性列表(工作原理相同)。但它还有很多其他配置。我更喜欢使用Universal Image Loader,因为它为您提供了更多配置选项。如果下载失败,您可以显示错误图像。可以显示带圆角的图像。可以缓存在磁盘或内存上。可以压缩图像。

在您的自定义适配器构造函数中

 File cacheDir = StorageUtils.getOwnCacheDirectory(a, "your folder");

 // Get singletone instance of ImageLoader
 imageLoader = ImageLoader.getInstance();
 // Create configuration for ImageLoader (all options are optional)
 ImageLoaderConfiguration config = new ImageLoaderConfiguration.Builder(a)
      // You can pass your own memory cache implementation
     .discCache(new UnlimitedDiscCache(cacheDir)) // You can pass your own disc cache implementation
     .discCacheFileNameGenerator(new HashCodeFileNameGenerator())
     .enableLogging()
     .build();
 // Initialize ImageLoader with created configuration. Do it once.
 imageLoader.init(config);
  options = new DisplayImageOptions.Builder()
  .showStubImage(R.drawable.stub_id)//display stub image
  .cacheInMemory()
  .cacheOnDisc()
  .displayer(new RoundedBitmapDisplayer(20))
  .build();

在你的 getView()

   ImageView image=(ImageView)vi.findViewById(R.id.imageview); 
   imageLoader.displayImage(imageurl, image,options);//provide imageurl, imageview and options.

您可以配置其他选项以满足您的需求。

与延迟加载/通用图像加载器一起,您可以查看持有者以实现平滑滚动和性能。http://developer.android.com/training/improving-layouts/smooth-scrolling.html

于 2013-03-28T05:39:31.380 回答