在android中使用位图的最佳方法;)

时间:2011-11-17 15:26:57

标签: android bitmap imageview galleryview

我必须为平板电脑创建Android应用程序,应用程序将显示新的杂志和他的页面。每个杂志大约有70页,每页都有图像覆盖,重约700 000字节。应用程序的主页显示大图像和小图库(图库视图)与图像。我使用andrid 3.2在模拟器上工作。当我将图像添加到图库并尝试滑动它时,它确实无法正常工作。有时不会加载所有图像,LogCat会向我显示以下信息:

11-17 14:30:51.598: D/skia(5868): libjpeg error 105 <  Ss=%d, Se=%d, Ah=%d, Al=%d> from read_scanlines [128 168]
11-17 14:30:51.598: D/skia(5868): --- decoder->decode returned false

现在我在画廊中放了7张像这样缩放的图像:

public Bitmap decodeFile(String f) {
    try {
        BitmapFactory.Options o = new BitmapFactory.Options();
        o.inJustDecodeBounds = true;
        BitmapFactory.decodeStream(new FileInputStream(f),null,o);

        final int REQUIRED_SIZE=75;

        int width_tmp=o.outWidth, height_tmp=o.outHeight;
        int scale=1;
        while(true) {
            if(width_tmp/2<REQUIRED_SIZE || height_tmp/2<REQUIRED_SIZE)
                break;
            width_tmp/=2;
            height_tmp/=2;
            scale*=2;
        }
        BitmapFactory.Options o2 = new BitmapFactory.Options();
        o2.inSampleSize=scale;
        return BitmapFactory.decodeStream(new FileInputStream(f), null, o2);
    } catch (FileNotFoundException e) {}
    return null;
}

并在图库中显示:

    public View getView(int position, View convertView, ViewGroup parent) {
        View retval = LayoutInflater.from(parent.getContext()).inflate(R.layout.viewitem, null);
        ImageView iV = (ImageView) retval.findViewById(R.id.image);
        String path = ArrayHelper.list.get(position).get("pageId").toString();
        Bitmap bP = decodeFile(Environment.getExternalStorageDirectory() + "/MCW/" + path + "/head.jpg");
        iV.setImageBitmap(bP);
        return retval;
    }

将来我会在画廊中有更多的模仿,我可以想象它将如何运作。

我的问题是:我应该做什么?我应该如何加载图片?

1 个答案:

答案 0 :(得分:2)

你问了一个普遍的问题,所以我能做的最好的就是给你一个通用的答案。您不应该在杂志中有整个页面的位图。您应该只对页面的图片部分使用位图。其余应该是实际文本。这将大大减少你的记忆足迹。此外,您应该延迟加载这些位图。请查看此discussion以获取有关如何延迟加载图片的建议。