我们可以通过android中的intent传输多少数据?

问题描述:

我们可以通过android中的intent传输多少数据.
在这里,我将字符串作为值发送.但是我可以通过intent发送多少数据. 是否会根据Android OS版本进行更改?

How much data we can transfer through intent in android.
Here I sending sting as a value. but how much data I can send through intent. Is it change based on Android OS version ?

Intent myintent=new Intent(Info.this, GraphDiag.class).putExtra("101", "string");
startActivity(myintent);

可以通过意图传输的数据量约为1MB

The amount of data that you can transfer through intents is approx 1MB

这是对您有用的链接

问题:将大数据传递给第二个活动