-2

好的,这是一个非常常见的问题,但我的问题有点不同,我找不到其他主题的解决方案,所以我在这里发布新问题。我有一个显示 ListView 的应用程序。ListView 的每一行,我都有一个 ImageView 来使用 ListAdapter 从 SD 卡加载一个小位图图标(它很小,所以问题不在于大小)。现在,如果我慢慢滚动列表,它工作正常。但是如果我滚动得非常快,当 ListView 足够长时,它不再显示图标,logcat 中的消息是这样的:

126 600-byte external allocation too large for this process.

VM 不会让我们分配 126,600 字节

然后应用程序崩溃和 logcat 显示:

java.lang.OutOfMemoryError: bitmap size exceeds VM budget

我在 2 台不同的设备上进行了测试,其中只有 1 台出现此错误,其他的正常。请注意,此错误仅在 ListView 滚动非常快时发生。那是因为创建的新线程与垃圾收集的速度不匹配吗?在这种情况下,有人可以给我一些建议吗?

4

1 回答 1

0

在使用位图时,当与 ListView 一起使用时,您通常会得到 OutOfMemory。

所以你应该选择LasyList,如图所示。

将负责您的图像加载。

要使用 SDCard,您需要替换 ImageLoader 类中的方法,如下所示

private Bitmap getBitmap(String url) 
    {
        // If is from SD Card
        try {
            File file = new File(url);
            if(file.exists())
            {
                return BitmapFactory.decodeFile(url);
            }
        } catch (Exception e) {

        }

        File f=fileCache.getFile(url);

        //from SD cache
        Bitmap b = decodeFile(f);
        if(b!=null)
            return b;

        //from web
        try {
            Bitmap bitmap=null;
            URL imageUrl = new URL(url);
            HttpURLConnection conn = (HttpURLConnection)imageUrl.openConnection();
            conn.setConnectTimeout(30000);
            conn.setReadTimeout(30000);
            conn.setInstanceFollowRedirects(true);
            InputStream is=conn.getInputStream();
            OutputStream os = new FileOutputStream(f);
            Utils.CopyStream(is, os);
            os.close();
            bitmap = decodeFile(f);
            return bitmap;
        } catch (Exception ex){
           ex.printStackTrace();
           return null;
        }
    }
于 2012-06-20T05:49:54.373 回答