Android:在两个活动之间切换并在它们之间共享信息
这是一个基本问题,但我需要一些帮助。
我有两项活动:actA、actB。 在 actA 中,我想启动 actB 并给它一个字符串,而不是想结束 actB 并将另一个字符串返回给 actA (我不想转到 actA 的 onCreate() ,我宁愿将此值返回给某个 ,以便它可以使用 actB 中的字符串。
actA 中的方法
This is a basic question but I need some help with it.
I have two activities : actA, actB.
While in actA I want to start actB and give it a String, than I want to end actB and return another String to actA (I don't want to go to onCreate() of actA, I would much rather return this value to some method in actA so it can use the String from actB.
Help is appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在活动 A 中:
在活动 B 中(onCreate 方法):
发送回数据时:
在活动 A 中: (onActivityResult) [ 您需要重写]
In Activity A :
In Activity B (onCreate Method) :
While sending data back :
In Activity A : (onActivityResult) [ You need to override ]
下面链接的问题的答案也描述了您正在寻找的相同问题
如何在 onResume() 中从包中提取字符串?
the answer to question linked below also describes the same issue you are looking for
How to pull string from bundle in onResume()?
对于您的第一个问题,您可以在实际创建 Intent 之前使用方法
intentname.putExtra("extravalue", value);
为新 Intent 提供额外的值。然后,您可以在新创建的活动中读取该值。我知道我不擅长解释,但我希望您能从我制作的应用程序中获取的这段代码中得到启发。
ListLinks.java:LinkView.java
。
我不太确定如何解决你的第二个问题,所以遗憾的是我无法帮助你解决这个问题,但我相信其他人可以
As for your first problem, you can give extra values to a new Intent by using the method
intentname.putExtra("extravalue", value);
before actually creating the Intent.You can then read that value out in the the newly created Activity. I know I'm pretty terrible at explaining, but I hope you get the idea from this piece of code I took from an app I made.
ListLinks.java:
LinkView.java
I'm not quite sure about how to resolve your second problem, so sadly I cannot help you with this one but I'm sure someone else might.