java.lang.RuntimeException:android.os.TransactionTooLargeException:data parcel size xxx bytes

Posted yun382657988

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java.lang.RuntimeException:android.os.TransactionTooLargeException:data parcel size xxx bytes相关的知识,希望对你有一定的参考价值。

今天遇到个bug,要求图片合成好后的bitmap加上水印,传递到下个fragment的中,然后显示出来,没有报错,之后分享此图片返回到App界面后报错,报错信息如下

 

查了下原因,frangemnt 之间在传递数据数据的时候,大小超出了限制(貌似是512k)就会程序异常报错。

解决办法,压缩图片大小,以字节流的形式传递,亲测不ok。

最后还是用Bundle传递,只不过讲uri传递过去,到下一个界面,glide加载uri,也可以将uri转化为string类型加上toString就可以

Jumei.getHandler().postDelayed(() -> 
            Bitmap bitmap = ImageUtils.view2Bitmap(imgeAllFrame);
            Bitmap waterBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.img_app_tag);
            Bitmap watermarkBitmap = ImageUtil.createWaterMaskRightBottom(getContext(),
                    bitmap, waterBitmap, 10, 10);
            File file = SaveFileUntil.saveFile(FileUtil.getFileNameByTime("IMG", "jpg"));
            boolean save = ImageUtils.save(watermarkBitmap, file, Bitmap.CompressFormat.JPEG);
            Uri url = Uri.fromFile(new File(file.getPath()));
            if (save) 
                getContext().sendBroadcast(new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, url));
            
            getSupportDelegate().start(SaveImageDelegate.create(url));
            ToastUtils.showLong("已成功保存!");
        , 300);

这个是实现保存到本地相册的方法。

错误具体分析详细可以参考此人博客

以上是关于java.lang.RuntimeException:android.os.TransactionTooLargeException:data parcel size xxx bytes的主要内容,如果未能解决你的问题,请参考以下文章

Android Studio 按钮导致崩溃

添加 ImageView 时应用程序崩溃?