java.lang.OutOfMemoryError: bitmap size exceeds VM budget - Android

前端 未结 13 1779
醉话见心
醉话见心 2020-11-22 01:32

I developed an application that uses lots of images on Android.

The app runs once, fills the information on the screen (Layouts, Listviews,

相关标签:
13条回答
  • 2020-11-22 02:09

    One of the most common errors that I found developing Android Apps is the “java.lang.OutOfMemoryError: Bitmap Size Exceeds VM Budget” error. I found this error frequently on activities using lots of bitmaps after changing orientation: the Activity is destroyed, created again and the layouts are “inflated” from the XML consuming the VM memory available for bitmaps.

    Bitmaps on the previous activity layout are not properly de-allocated by the garbage collector because they have crossed references to their activity. After many experiments I found a quite good solution for this problem.

    First, set the “id” attribute on the parent view of your XML layout:

        <?xml version="1.0" encoding="utf-8"?>
        <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
         android:layout_width="fill_parent"
         android:layout_height="fill_parent"
         android:id="@+id/RootView"
         >
         ...
    

    Then, on the onDestroy() method of your Activity, call the unbindDrawables() method passing a reference to the parent View and then do a System.gc().

        @Override
        protected void onDestroy() {
        super.onDestroy();
    
        unbindDrawables(findViewById(R.id.RootView));
        System.gc();
        }
    
        private void unbindDrawables(View view) {
            if (view.getBackground() != null) {
            view.getBackground().setCallback(null);
            }
            if (view instanceof ViewGroup) {
                for (int i = 0; i < ((ViewGroup) view).getChildCount(); i++) {
                unbindDrawables(((ViewGroup) view).getChildAt(i));
                }
            ((ViewGroup) view).removeAllViews();
            }
        }
    

    This unbindDrawables() method explores the view tree recursively and:

    1. Removes callbacks on all the background drawables
    2. Removes children on every viewgroup
    0 讨论(0)
  • 2020-11-22 02:09

    Well I've tried everything I found on the internet and none of them worked. Calling System.gc() only drags down the speed of app. Recycling bitmaps in onDestroy didn't work for me too.

    The only thing that works now is to have a static list of all the bitmap so that the bitmaps survive after a restart. And just use the saved bitmaps instead of creating new ones every time the activity if restarted.

    In my case the code looks like this:

    private static BitmapDrawable currentBGDrawable;
    
    if (new File(uriString).exists()) {
        if (!uriString.equals(currentBGUri)) {
            freeBackground();
            bg = BitmapFactory.decodeFile(uriString);
    
            currentBGUri = uriString;
            bgDrawable = new BitmapDrawable(bg);
            currentBGDrawable = bgDrawable;
        } else {
            bgDrawable = currentBGDrawable;
        }
    }
    
    0 讨论(0)
  • 2020-11-22 02:11

    I too am frustrated by the outofmemory bug. And yes, I too found that this error pops up a lot when scaling images. At first I tried creating image sizes for all densities, but I found this substantially increased the size of my app. So I'm now just using one image for all densities and scaling my images.

    My application would throw an outofmemory error whenever the user went from one activity to another. Setting my drawables to null and calling System.gc() didn't work, neither did recycling my bitmapDrawables with getBitMap().recycle(). Android would continue to throw the outofmemory error with the first approach, and it would throw a canvas error message whenever it tried using a recycled bitmap with the second approach.

    I took an even third approach. I set all views to null and the background to black. I do this cleanup in my onStop() method. This is the method that gets called as soon as the activity is no longer visible. If you do it in the onPause() method, users will see a black background. Not ideal. As for doing it in the onDestroy() method, there is no guarantee that it will get called.

    To prevent a black screen from occurring if the user presses the back button on the device, I reload the activity in the onRestart() method by calling the startActivity(getIntent()) and then finish() methods.

    Note: it's not really necessary to change the background to black.

    0 讨论(0)
  • 2020-11-22 02:12

    The BitmapFactory.decode* methods, discussed in the Load Large Bitmaps Efficiently lesson, should not be executed on the main UI thread if the source data is read from disk or a network location (or really any source other than memory). The time this data takes to load is unpredictable and depends on a variety of factors (speed of reading from disk or network, size of image, power of CPU, etc.). If one of these tasks blocks the UI thread, the system flags your application as non-responsive and the user has the option of closing it (see Designing for Responsiveness for more information).

    0 讨论(0)
  • 2020-11-22 02:25

    Following points really helped me a lot. There might be other points too, but these are very crucial:

    1. Use application context(instead of activity.this) where ever possible.
    2. Stop and release your threads in onPause() method of activity
    3. Release your views / callbacks in onDestroy() method of activity
    0 讨论(0)
  • 2020-11-22 02:26

    I had the same problem just with switching the background images with reasonable sizes. I got better results with setting the ImageView to null before putting in a new picture.

    ImageView ivBg = (ImageView) findViewById(R.id.main_backgroundImage);
    ivBg.setImageDrawable(null);
    ivBg.setImageDrawable(getResources().getDrawable(R.drawable.new_picture));
    
    0 讨论(0)
提交回复
热议问题