gpt4 book ai didi

java - 如何从普通 java 类重定向到其他扩展 android 中 Activity 的 java 类?

转载 作者:行者123 更新时间:2023-11-29 21:12:58 25 4
gpt4 key购买 nike

如何从普通 java 类重定向到其他 java 类,它通过放置一些数据来扩展 android 中的 Activity 。

最佳答案

开始另一个 Activity 课

Intent i = new Intent(this, ActivityTwo.class);//this your current class
startActivity(i);

在类 1 中传递一个值

Intent i = new Intent(this, ActivityTwo.class);
i.putExtra("Value1", "This value one for ActivityTwo ");
i.putExtra("Value2", "This value two ActivityTwo");

从 ActivityTwo.class 获取值

Bundle extras = getIntent().getExtras();
if (extras == null) {
return;
}
// get data via the key
String value1 = extras.getString(Intent.EXTRA_TEXT);
if (value1 != null) {
// do something with the data
}

关于java - 如何从普通 java 类重定向到其他扩展 android 中 Activity 的 java 类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22219562/

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