3

在某些设备和 Android 版本中使用相机拍照时出现问题。例如,在我的 Xperia U v4.0.3 中,我的代码运行良好,但在另一个 xperia U v2.3.3 中却无法运行......

我读了很多关于这个错误的信息,但我无法修复它......

我拍照并显示的代码:

public void callCamera(){
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
File photo = new File(Environment.getExternalStorageDirectory(),  "Pic.jpg");
intent.putExtra(MediaStore.EXTRA_OUTPUT,
Uri.fromFile(photo));
imageUri = Uri.fromFile(photo);
startActivityForResult(intent, SELECT_CAMERA);
}

public void onActivityResult(int requestCode, int resultCode, Intent data) {
            if (requestCode == SELECT_CAMERA) {


                Uri selectedImage = imageUri;
                getContentResolver().notifyChange(selectedImage, null);

                ContentResolver cr = getContentResolver();

                try {

                    imageSelected = android.provider.MediaStore.Images.Media
                     .getBitmap(cr, selectedImage);
                    // I tried to read the image created for the camera in the Sd
                    //But I've got the same error... 
                    //imageSelected = Utils.readImageSD(this, selectedImage.getPath());

                     imageSelected = Utils.rotateImage(Utils.scaleBitmap(imageSelected, 160, 160));
                     ivImageLoad.setImageBitmap(imageSelected);

                } catch (Exception e) {
                    Utils.showToast(getApplicationContext(), R.string.errorLoad);
                    Log.e("Camera", e.toString());
                }

            }

}

我希望有人可以帮助我......我不知道我能做什么......

提前致谢。

问候。

4

2 回答 2

4

看起来您只想显示 160x160 位图,但在这一行中,您正在读取整个位图,然后将其缩小。

imageSelected = android.provider.MediaStore.Images.Media(cr, selectedImage);

您可以避免使用 inJustDecodeBounds 将整个位图加载到内存中然后您可以使用inSampleSize对其进行缩放。

这是 Android 系列中有关有效加载大型位图的一些示例代码

public static int calculateInSampleSize(BitmapFactory.Options options, int reqWidth, int reqHeight) {
    // Raw height and width of image
    final int height = options.outHeight;
    final int width = options.outWidth;
    int inSampleSize = 1;

    if (height > reqHeight || width > reqWidth) {
        if (width > height) {
            inSampleSize = Math.round((float)height / (float)reqHeight);
        } else {
            inSampleSize = Math.round((float)width / (float)reqWidth);
        }
    }
    return inSampleSize;
}

public static Bitmap decodeSampledBitmapFromUri(Uri uri,
        int reqWidth, int reqHeight) {


    // First decode with inJustDecodeBounds=true to check dimensions
    final BitmapFactory.Options options = new BitmapFactory.Options();
    options.inJustDecodeBounds = true;
    BitmapFactory.decodeStream(getContentResolver().openInputStream(uri), options);

    // Calculate inSampleSize
    options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight);

    // Decode bitmap with inSampleSize set
    options.inJustDecodeBounds = false;
    return BitmapFactory.decodeStream(getContentResolver().openInputStream(uri), null, options);
}

然后要获得 160x160 图像,您只需执行以下操作:

ivImageLoad.setImageBitmap(decodeSampledBitmapFromUri(selectedImage, 100, 100));
于 2012-11-13T01:55:01.530 回答
0

也许问题的根源是默认的堆大小。增加它的方法有:

对于 Android 2.2 或更低版本:

dalvik.system.VMRuntime.getRuntime().setMinimumHeapSize(sizeInBytes);

对于 Android 2.3 或更高版本

android:largeHeap="true"

检查问题的根源是否是这个,相应地增加堆。

于 2012-11-13T00:26:24.167 回答