gpt4 book ai didi

android - 在 Android 中的 Activity 之间传递数据

转载 作者:IT老高 更新时间:2023-10-28 21:37:37 24 4
gpt4 key购买 nike

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

最佳答案

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

Intent i = new Intent(getApplicationContext(), ActivityB.class);
i.putExtra(key, value);
startActivity(i);

然后在另一个 Activity 中,检索这些值。

Bundle extras = getIntent().getExtras(); 
if(extras !=null) {
String value = extras.getString(key);
}

关于android - 在 Android 中的 Activity 之间传递数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2965109/

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