Intent不能传递超过40K的bitmap

来源:互联网 发布:cisco查看端口流量 编辑:程序博客网 时间:2024/05/17 20:49
Intent resultIntent = new Intent();Bundle bundle = new Bundle();bundle.putString("result", resultString);bundle.putParcelable("bitmap", barcode);resultIntent.putExtras(bundle);
我们有时会用intent来传递Bitmap对象,但是如果传递的bitmap超过40K则会被毙掉,所以在传递时尽量传递图片路径或者就不传递bitmap
0 0
原创粉丝点击