gpt4 book ai didi

android - 如何在 Android 应用程序的 Activity 之间传递数据?

转载 作者:行者123 更新时间:2023-12-02 02:49:52 26 4
gpt4 key购买 nike

我有一个场景,通过登录页面登录后,每个 Activity 上都会有一个注销按钮

单击注销时,我将传递登录用户的 session ID 进行注销。谁能指导我如何让 session ID 对所有 Activity 可用?

这种情况的任何替代方案

最佳答案

在当前的 Activity 中,创建一个新的 Intent:

String value="Hello world";
Intent i = new Intent(CurrentActivity.this, NewActivity.class);
i.putExtra("key",value);
startActivity(i);

然后在新的 Activity 中检索这些值:

Bundle extras = getIntent().getExtras();
if (extras != null) {
String value = extras.getString("key");
//The key argument here must match that used in the other activity
}

使用此技术将变量从一个 Activity 传递到另一个 Activity。

关于android - 如何在 Android 应用程序的 Activity 之间传递数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57114086/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com