Xamarin android onActivityResult data.extras返回null

时间:2018-07-01 23:11:20

标签: android xamarin bitmap xamarin.android onactivityresult

进行此活动,使我可以接听或选择手机,然后将其裁剪并设置为ImageView。 但是,在裁剪图像后,它将在位图bitmap =(Bitmap)bundle.GetParcelable(“ data”);上返回null。 还尝试过Bitmap bitmap =(Bitmap)data.extras.Get(“ data”); 这是我的代码

private void CameraOpen()
    {
        CamIntent = new Intent(MediaStore.ActionImageCapture);
        file = new File(Android.OS.Environment.ExternalStorageDirectory, "file_" + Guid.NewGuid().ToString() + ".jpg");
        uri = Android.Net.Uri.FromFile(file);
        CamIntent.PutExtra(MediaStore.ExtraOutput, uri);
        CamIntent.PutExtra("return-data", true);
        StartActivityForResult(CamIntent, 0);
    }

    private void GaleryOpen()
    {
        GalIntent = new Intent(Intent.ActionPick, MediaStore.Images.Media.ExternalContentUri);
        StartActivityForResult(Intent.CreateChooser(GalIntent, "Select image from galery"), 2);
    }

    protected override void OnActivityResult(int requestCode, [GeneratedEnum] Result resultCode, Intent data)
    {
        if(requestCode == 0 && resultCode == Result.Ok)
        {

            CropImage();
        }
        else if (requestCode == 2)
        {
            if (data != null)
            {
                uri = data.Data;
                CropImage();
            }
        }
        else if (requestCode == 1)
        {
            if (data != null)
            {
                Bundle bundle = data.Extras;
                Bitmap bitmap = (Bitmap)bundle.GetParcelable("data");
                imgPhoto.SetImageBitmap(bitmap);
            }

        }
    }

    private void CropImage()
    {
        try
        {
            CropIntent = new Intent("com.android.camera.action.CROP");
            CropIntent.SetDataAndType(uri, "image/*");

            CropIntent.PutExtra("crop", "true");
            CropIntent.PutExtra("outputX", 180);
            CropIntent.PutExtra("outputY", 180);
            CropIntent.PutExtra("aspectX", 4);
            CropIntent.PutExtra("aspectY", 4);
            CropIntent.PutExtra("scaleUpIfNeeded", true);
            CropIntent.PutExtra("return-data", "true");

            StartActivityForResult(CropIntent, 1);
        }
        catch (ActivityNotFoundException ex)
        {

        }
    }

出错了

未处理的异常:

System.NullReferenceException:

非常感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

您正在将包转换为位图对象,然后对位图对象使用GetParcelable()方法。 GetParcelable()在位图对象上不是可用的公共方法,因此您遇到类型不匹配的情况,这会导致空引用。

https://developer.xamarin.com/api/member/Android.OS.Bundle.GetParcelable/p/System.String/

https://developer.xamarin.com/api/type/Android.Graphics.Bitmap/