Size limitation on attached Parcelable?

拟墨画扇 提交于 2019-11-30 22:06:51

问题


I want to know is there any size limitation on Parcelable that attached to an Intent? I Read some docs about Intents, Bundles, Parcelable again and there was nothing about size limitation. But I read some answers, that say size of attached Parcelable is limited (for example, 1 MB). So are Parcelables limited by size or it only depends to the device?


回答1:


Its explained on the docs here. The transaction buffer for each process is 1 mb. In my understanding the factors to be considered are:

  1. Individual size of transactions(maximum 1 mb)
  2. The number of transactions(the sum of size of all transactions should be less than 1 mb)


来源:https://stackoverflow.com/questions/28667438/size-limitation-on-attached-parcelable

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!