使用ImageView的ViewPager提供“java.lang.OutOfMemoryError:位图大小超过VM预算”

时间:2012-03-19 14:38:07

标签: android imageview out-of-memory android-viewpager

我制作了ViewPager来显示图片。当我推进某些页面时,我收到java.lang.OutOfMemoryError: bitmap size exceeds VM budget错误。

关于此问题还有更多问题,但我找不到解决方案(BitMap.RecycleSystem.gc()等)。如果您有任何建议或解决方案,请告诉我们!

PNG是628KB,478KB,587KB,132KB,139KB,149KB,585KB(崩溃)。

如果您有其他解决方案(滚动图片,如页面)让我知道!

我的代码:

package nl.ipear.vngmagazine;
import android.content.Context;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.os.Environment;
import android.os.Parcelable;
import android.support.v4.app.FragmentActivity;
import android.support.v4.view.PagerAdapter;
import android.support.v4.view.ViewPager;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.widget.ImageView;

public class ShowMagazine2 extends FragmentActivity {
    private ViewPager myPager;
    private MyPagerAdapter myPagerAdapter;

    private static int NUM_PAGES = 15;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.showmagazine);

        myPager = (ViewPager)findViewById(R.id.viewpager1);
        myPagerAdapter = new MyPagerAdapter();
        myPager.setAdapter(myPagerAdapter);

        return;
    }

    private class MyPagerAdapter extends PagerAdapter{
        @Override
        public int getCount() {
            return NUM_PAGES;
        }

        @Override
        public Object instantiateItem(View collection, int position) {      
            String location = Environment.getExternalStorageDirectory() + "/MYData/" + "2012-02/";

            // Inflate and create the view
            LayoutInflater layoutInflater = (LayoutInflater) collection.getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            View view = layoutInflater.inflate(R.layout.magazinepageview, null);

            ImageView imageView = (ImageView) view.findViewById(R.id.magazinePageImage);
            String fileName = String.format("%s%s%02d%s", location, "2012-02_Page_", position + 1, ".png");
            Log.v("PNG", fileName);
            imageView.setImageBitmap(BitmapFactory.decodeFile(fileName));

            ((ViewPager) collection).addView(view,0);

            return view;
        }

        @Override
        public void destroyItem(View collection, int position, Object view) {
            ((ViewPager) collection).removeView((View) view);           
        }

        @Override
        public boolean isViewFromObject(View view, Object object) {
            return view==((View)object);
        }

        @Override
        public void finishUpdate(View arg0) {}

        @Override
        public void restoreState(Parcelable arg0, ClassLoader arg1) {}

        @Override
        public Parcelable saveState() {
            return null;
        }

        @Override
        public void startUpdate(View arg0) {}   
    }
}

5 个答案:

答案 0 :(得分:1)

您的ViewPager似乎正在加载位图,但在滚动时不会释放任何内容。

我建议你限制当前可查看页面两侧可用的页面数量,这样系统就可以清理其他页面中的位图。

确保在销毁活动/碎片时回收位图以帮助解决OOM问题。

答案 1 :(得分:1)

是的,请关注Mimminito。我建议2页,因为3页的来回渲染速度同样快。

现在,如果您需要没有滞后的图像,并且图像在互联网上。确保下载并放入internalStorageDevice,然后重用它(如果存在)。

我的最佳答案可能是内存泄漏问题不正确。这个新答案可能是因为图像的高度和宽度导致内存泄漏的原因。

private byte[] resizeImage( byte[] input ) {

    if ( input == null ) {
        return null;
    }

    Bitmap bitmapOrg = BitmapFactory.decodeByteArray(input, 0, input.length);

    if ( bitmapOrg == null ) {
        return null;
    }

    int height = bitmapOrg.getHeight();
    int width = bitmapOrg.getWidth();
    int newHeight = 250;

    float scaleHeight = ((float) newHeight) / height;

    // creates matrix for the manipulation
    Matrix matrix = new Matrix();
    // resize the bit map
    matrix.postScale(scaleHeight, scaleHeight);

    // recreate the new Bitmap
    Bitmap resizedBitmap = Bitmap.createBitmap(bitmapOrg, 0, 0,
            width, height, matrix, true);

    bitmapOrg.recycle();

    ByteArrayOutputStream bos = new ByteArrayOutputStream();
    resizedBitmap.compress(CompressFormat.PNG, 0 /*ignored for PNG*/, bos);            

    resizedBitmap.recycle();

    return bos.toByteArray();            
}       

这个顶级代码用于重新调用位图“newHeight”是给位图的新高度。

现在,如果这不起作用,我现在100%确定OP必须使用更多的视图来重载ViewPager,而android内存可以处理这些视图。解决方案是使用ViewFlipper并使用我上面提到的答案。

答案 2 :(得分:1)

尝试缩小你的位图,它确实解决了这个问题,你就是这样做的。

BitmapFactory.Options options = new BitmapFactory.Options();
    options.inJustDecodeBounds = true;
    BitmapFactory.decodeFile( filename, options );
        options.inJustDecodeBounds = false;
        options.inSampleSize = 2; 

        bitmap = BitmapFactory.decodeFile( filename, options );
        if ( bitmap != null && exact ) {
            bitmap = Bitmap.createScaledBitmap( bitmap, width, height, false );
        }

将样本大小调整为您想要的大小,例如4,8等

答案 3 :(得分:1)

在这里找到答案:Android:java.lang.OutOfMemoryError: Failed to allocate a 23970828 byte allocation with 2097152 free bytes and 2MB until OOM

只需在AndroidManifest中的Application标记中添加android:hardwareAccelerated="false"android:largeHeap="true"

<application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme"
        android:hardwareAccelerated="false"
        android:largeHeap="true">

答案 4 :(得分:0)

在oncreate()

中调用System.gc()