本文介绍了从一个活动传输到另一个活动使用意图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我希望能够从一个活动的数据传输到另一个活动。如何才能做到这一点?
I would like to be able to transfer data from one activity to another activity. How can this be done?
推荐答案
通过以下code,我们可以发送活动之间的值
Through the below code we can send the values between activities
使用下面的code在父活动
use the below code in parent activity
Intent myintent=new Intent(Info.this, GraphDiag.class).putExtra("<StringName>", value);
startActivity(myintent);
使用下面的code的子活动
use the below code in child activity
String s= getIntent().getStringExtra(<StringName>);
这篇关于从一个活动传输到另一个活动使用意图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!