为什么 Intent 不能传递大数据

Intent 传递不同大小数据时的问题:

  • 传 512k 以下的数据是可以正常传递的;
  • 传 512k~1024k 的数据会出错,闪退;
  • 传 1024k 以上的数据会报错:TransactionTooLargeException;
  • 考虑到 Intent 还包括要启动的 Activity 等信息,实际可以传的数据略小于 512k;

Intent 携带信息的大小受 Binder 限制。数据以 Parcel 对象的形式存放在 Binder 传递缓存中。Binder 传递缓存有个限定的大小,通常是 1Mb。但同一个进程中所有的传输共享缓存空间,多个地方在进行传输时,即使它们各自传说的数据不超过大小显示。TrasnsactionTooLargeException 异常也可能会被抛出。因此,在使用 Intent 传递数据时,1Mb 并不是安全上限。因为 Binder 中可能正在处理其他的传输工作。不同的机型和系统版本,这个上限值也可能会不同。

普通的由 Zygote 进程 fork 出的进程,所映射的 Binder 内存大小是不到 1M 的。准确的说是:

c++ 复制代码
// /frameworks/native/libs/binder/ProcessState.cpp
#define BINDER_VM_SIZE ((1 * 1024 * 1024) - sysconf(_SC_PAGE_SIZE) * 2)

如果传输的数据超过了这个大小,系统就会报错,因为 Binder 本身就是为了进程间频繁而灵活的通信所设计的,而不是为了拷贝大数据而使用的。

这个 TransactionTooLargeException 中也提到了这个:

java 复制代码
/*
 * The Binder transaction failed because it was too large.
 * 
 * The Binder transaction buffer has a limited fixed size, currently 1MB, which
 * is shared by all transactions in progress for the process.  Consequently this
 * exception can be thrown when there are many transactions in progress even when
 * most of the individual transactions are of moderate size.
 *
 */

Intent 携带的数据会经过 Binder 内核传递到目标中去,因为 Binder 映射内存的限制,所以 Intent 也受限制。

参考

Android 使用 intent 传递数据时的大小限制

相关推荐
故渊at32 分钟前
系列三:组件化与模块化进阶 | 第11篇 组件化项目规范与问题根治:依赖、资源、Manifest 与混淆的全链路管控
android·架构·mvvm·模块化·组件化
故渊at42 分钟前
系列二:MVVM 深度实战与项目重构 | 第7篇 LiveData & StateFlow 状态管理实战:从“粘包弹”到“丝滑流式”
android·重构
是阿建吖!1 小时前
【Linux】信号
android·linux·c语言·c++
alexhilton3 小时前
AppFunctions:让你的Android应用更容易被AI智能体发现
android·kotlin·android jetpack
qq3621967053 小时前
APK文件签名校验教程:验证APK真伪的完整方法
android·智能手机
赏金术士3 小时前
Android 组件化概念和特征
android·kotlin·组件化
2501_915909069 小时前
深入解析Mock.js:功能、应用及实战案例,提升前端开发效率
android·ios·小程序·https·uni-app·iphone·webview
流星白龙11 小时前
【MySQL高阶】21.撤销表空间,撤销日志
android·mysql·adb
我命由我1234512 小时前
Android 开发,FragmentPagerAdapter 的 isViewFromObject 方法问题
android·java-ee·kotlin·android studio·android jetpack·android-studio·android runtime