How do I pass data between Activities in Android application?(如何在 Android 应用程序的活动之间传递数据?)
问题描述
我有一个场景,通过登录页面登录后,每个activity
上都会有一个退出按钮
.
I have a scenario where, after logging in through a login page, there will be a sign-out button
on each activity
.
点击 sign-out
时,我将传递已登录用户的 session id
以注销.谁能指导我如何使 session id
对所有 activities
可用?
On clicking sign-out
, I will be passing the session id
of the signed in user to sign-out. Can anyone guide me on how to keep session id
available to all activities
?
这种情况的任何替代方案
Any alternative to this case
推荐答案
最简单的方法是将会话 ID 传递给您用于启动的 Intent
中的注销活动活动:
The easiest way to do this would be to pass the session id to the signout activity in the Intent
you're using to start the activity:
Intent intent = new Intent(getBaseContext(), SignoutActivity.class);
intent.putExtra("EXTRA_SESSION_ID", sessionId);
startActivity(intent);
在下一个活动中访问该意图:
Access that intent on next activity:
String sessionId = getIntent().getStringExtra("EXTRA_SESSION_ID");
Intents 的 docs 有更多信息(查看标题为附加"的部分).
The docs for Intents has more information (look at the section titled "Extras").
这篇关于如何在 Android 应用程序的活动之间传递数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 Android 应用程序的活动之间传递数据?
基础教程推荐
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01