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