使用意图将数据从一个活动传输到另一个活动 [英] Transfer data from one Activity to Another Activity Using Intents

查看:16
本文介绍了使用意图将数据从一个活动传输到另一个活动的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我希望能够将数据从一项活动传输到另一项活动.这怎么办?

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>);

这篇关于使用意图将数据从一个活动传输到另一个活动的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆