更改在drawable中显示的活动的方向时内存不足

时间:2014-06-18 11:41:13

标签: java android out-of-memory

这是一个onCreate方法:

    public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_foto);
    ImageView MyImageView = (ImageView)findViewById(R.id.imageView);
    Drawable d = Drawable.createFromPath("/mnt/sdcard/Pictures/MyCameraApp/TEMP.jpg" );
    MyImageView.setImageDrawable(d);}

所以,我试图谷歌它,我发现了很多关于重新发布Bitmaps的信息,但没有关于从memmory中重新发布drawable的信息。如何从memmory中重新绘制drawable,我应该在哪里实现它:onPause或onDestroy?

1 个答案:

答案 0 :(得分:0)

由于您的应用正在使用(或需要)比授予的内存更多的内存,因此您的内存不足。这通常发生在内存中加载大位图(图像)或显示许多位图时。请查看developer site以有效显示位图。使用以下代码来防止OOM异常:

Bitmap scaledBitmap = getResizedBitmap(BitmapFactory.decodeFile("/mnt/sdcard/Pictures/MyCameraApp/TEMP.jpg"),3,3); 
public Bitmap getResizedBitmap(Bitmap bm, int newHeight, int newWidth) {
    int width = bm.getWidth();
    int height = bm.getHeight();
    float scaleWidth = ((float) newWidth) / width;
    float scaleHeight = ((float) newHeight) / height;
    // CREATE A MATRIX FOR THE MANIPULATION
    Matrix matrix = new Matrix();
    // RESIZE THE BIT MAP
    matrix.postScale(scaleWidth, scaleHeight);
// "RECREATE" THE NEW BITMAP
Bitmap resizedBitmap = Bitmap.createBitmap(bm, 0, 0, width, height, matrix, false);
return resizedBitmap;

}