【发布时间】:2011-10-12 13:18:13
【问题描述】:
可能重复:
OutOfMemoryError: bitmap size exceeds VM budget :- Android
我正在编写一个程序,该程序使用图库中的图像,然后将它们显示在一个活动中(一个图像公关活动)。但是,我连续三天一遍又一遍地遇到这个错误,但没有任何消除它的进展:
07-25 11:43:36.197: ERROR/AndroidRuntime(346): java.lang.OutOfMemoryError: bitmap size exceeds VM budget
我的代码流程如下:
当用户按下按钮时,会触发一个指向图库的意图:
Intent galleryIntent = new Intent(Intent.ACTION_GET_CONTENT);
galleryIntent.setType("image/*");
startActivityForResult(galleryIntent, 0);
一旦用户选择了图像,图像就会显示在图像视图中:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<ImageView
android:background="#ffffffff"
android:id="@+id/image"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:maxWidth="250dip"
android:maxHeight="250dip"
android:adjustViewBounds="true"/>
</LinearLayout>
在 onActivityResult 方法中我有:
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if(resultCode == RESULT_OK) {
switch(requestCode) {
case 0: // Gallery
String realPath = getRealPathFromURI(data.getData());
File imgFile = new File(realPath);
Bitmap myBitmap;
try {
myBitmap = decodeFile(imgFile);
Bitmap rotatedBitmap = resolveOrientation(myBitmap);
img.setImageBitmap(rotatedBitmap);
OPTIONS_TYPE = 1;
} catch (IOException e) { e.printStackTrace(); }
insertImageInDB(realPath);
break;
case 1: // Camera
decodeFile 方法来自here,resolveOrientation 方法只是将位图包装成矩阵并顺时针旋转 90 度。
我真的希望有人可以帮助我解决这个问题。
【问题讨论】:
-
@THelper:你知道如何解决这个问题吗?根据您提供的两个链接,我已经实施了“解决方案”,但没有帮助