gpt4 book ai didi

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

转载 作者:IT老高 更新时间:2023-10-28 12:48:08 27 4
gpt4 key购买 nike

我有一个场景,通过登录页面登录后,每个activity上都会有一个退出按钮

点击 sign-out 时,我将传递已登录用户的 session id 以注销。谁能指导我如何使 session id 对所有 activities 可用?

这种情况的任何替代方案

最佳答案

在你当前的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 传递到另一个。

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

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