Is there any limit of bundle in Android?

android, bundle, limit

Solution

I think the limit is 500kb. You can save the passed object in a file and send the path of the file in the bundle instead. You can check similar question asked by me at SO

Problem

I want to know whether android bundle's data size has upper limit. I try to post data by bundle which size >80k,and throw android fatal exception.The data is Serializable.

Original source