ViewPager java.lang.OutOfMemoryError:位图大小超过VM预算

时间:2012-11-23 23:21:56

标签: java android android-viewpager

  

可能重复:
  java.lang.OutOfMemoryError: bitmap size exceeds VM budget - Android

我使用ViewPager来显示资源文件夹中的图像集,如果我的图像尺寸很小,那么每件事都可以正常工作,

但是当我用高清图像替换它时,我需要它在我的应用程序中,它给了我这个错误:

java.lang.OutOfMemoryError:位图大小超过VM预算

注1:

我现在在我的代码中有5张图像用于测试,但最后我将有大约30张高清图像,

注2:

我想知道为什么会发生这种情况,我是Android新手并且第一次使用viewpager类,之后我在另一个应用程序中使用了Gallery类,其中包含超过30个高清图像并且没有异常发生。

任何建议都将受到赞赏,非常感谢

我的代码:

logcat stack:

   FATAL EXCEPTION: main
    java.lang.OutOfMemoryError: bitmap size exceeds VM budget
at android.graphics.BitmapFactory.nativeDecodeAsset(Native Method)
at android.graphics.BitmapFactory.decodeStream(BitmapFactory.java:563)
at android.graphics.BitmapFactory.decodeResourceStream(BitmapFactory.java:439)
at android.graphics.BitmapFactory.decodeResource(BitmapFactory.java:462)
at android.graphics.BitmapFactory.decodeResource(BitmapFactory.java:488)
at com.test.demo.MyPagerAdapter.<init>(MyPagerAdapter.java:42)
at com.test.demo.MainActivity.onCreate(MainActivity.java:15)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1615)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1667)
at android.app.ActivityThread.access$1500(ActivityThread.java:117)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:935)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:123)
at android.app.ActivityThread.main(ActivityThread.java:3687)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:507)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:842)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:600)
at dalvik.system.NativeStart.main(Native Method)

MainActivity

 public class MainActivity extends Activity {  
  private ViewPager mMyPager;
  private MyPagerAdapter mMyPagerAdapter;

public void onCreate(Bundle savedInstanceState) {   
  super.onCreate(savedInstanceState);   
    setContentView(R.layout.main);   

  mMyPager = (ViewPager) findViewById(R.id.mypages);           
  mMyPagerAdapter = new MyPagerAdapter(this);   
  mMyPager.setAdapter(mMyPagerAdapter);  }} 

MyPagerAdapter

  public class MyPagerAdapter extends PagerAdapter {   

    private ArrayList<ImageView> mViewsList;   
private Context mContext = null;   

public MyPagerAdapter(Context context) {   
    mContext = context;   
    mViewsList = new ArrayList<ImageView>();   

    Resources resource = mContext.getResources();   
   Bitmap bMap1 = BitmapFactory.decodeResource(resource,   
            R.drawable.one);   
   ImageView image1 = new ImageView(mContext);   
    image1.setImageBitmap(bMap1);      
    mViewsList.add(image1);   

    Bitmap bMap2 = BitmapFactory.decodeResource(resource,   
            R.drawable.two );   
    ImageView image2 = new ImageView(mContext);   
    image2.setImageBitmap(bMap2);      
    mViewsList.add(image2);   

    Bitmap bMap3 = BitmapFactory.decodeResource(resource,   
            R.drawable.three);   
   ImageView image3 = new ImageView(mContext);   
    image3.setImageBitmap(bMap3);      
    mViewsList.add(image3); 

    Bitmap bMap4 = BitmapFactory.decodeResource(resource,   
            R.drawable.four);   
   ImageView image4 = new ImageView(mContext);   
    image4.setImageBitmap(bMap4);      
    mViewsList.add(image4); 

    Bitmap bMap5 = BitmapFactory.decodeResource(resource,   
            R.drawable.five);   
   ImageView image5 = new ImageView(mContext);   
    image5.setImageBitmap(bMap5);      
    mViewsList.add(image5); 
               }      

@Override  
public int getCount() {   
    return mViewsList.size();   
                        }   

@Override  
public Object instantiateItem(View view, int position) {   
    View myView = mViewsList.get(position);   
    ((ViewPager) view).addView(myView);   
    return myView;   
              }   

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

@Override  
public void destroyItem(View view, int arg1, Object object) {   
    ((ViewPager) view).removeView((ImageView) object);   
                }   
                   }  

3 个答案:

答案 0 :(得分:4)

您的适配器不应该按照您的方式编写。您应该只解码instantiateItem方法中的位图。

private Context context;
private ArrayList<Integer> mResourceList;
private Resources resource;  

public MyPagerAdapter(Context context) { 
    this.context = context;

    resource = context.getResources();

    mResourceList = new ArrayList<Integer>();     
    mResourceList.add(R.drawable.one);
    mResourceList.add(R.drawable.two);
    mResourceList.add(R.drawable.three);
    mResourceList.add(R.drawable.four);
    mResourceList.add(R.drawable.five);
}

@Override  
public Object instantiateItem(View view, int position) {   
        ImageView myView = new ImageView(context);

        Bitmap bitmap = BitmapFactory.decodeResource(resource, mResourceList.get(position) );
        myView.setImageBitmap(bitmap);

        ((ViewPager) view).addView(myView);   
        return myView;   
}   

现在,您需要确保您的位图未超过最大尺寸值(2048px x 2048px)。

如果是,则必须缩小图像。这可以通过将BitmapFactory.Options对象添加到BitmapFactory.decodeResouce参数并将inSampleSize设置为2来完成。将其设置为2将其采样到50%,4到25%等。

BitmapFactory.Options options = new BitmapFactory.Options()
options.inSampleSize = 2

Bitmap bitmap = BitmapFactory.decodeResource(resource, mResouceList.get(position), options );

希望这有帮助!

答案 1 :(得分:0)

位图的大小非常大,因此请在加载位图之前尝试缩放位图。 缩放位图的语法

Bitmap bitmapName= Bitmap.createScaledBitmap(sourceBitmap, width, height,
                        true);

宽度和高度是图像所需的尺寸。

答案 2 :(得分:0)

您的问题是您在真正需要之前创建了一堆位图。

instantiateView方法中,创建ImageView并加载位图并将其设置在那里。如果需要,可以使用ArrayList保存资源,以便在需要时知道要加载哪些图像。这样,垃圾收集将根据需要删除位图,并且不应导致内存问题。