gpt4 book ai didi

android - 如何打开带有附加参数的新屏幕?

转载 作者:太空狗 更新时间:2023-10-29 16:25:25 26 4
gpt4 key购买 nike

我已经阅读了 Android Dev Guid 的常见问题 (http://developer.android.com/guide/appendix/faq/commontasks.html#opennewscreen ) 但我不确定如何打开一个新屏幕,其中传递了额外的参数。

假设我要打开 screen2,其中有一个变量指示当前用户名,以便我可以问候用户。可能吗?

Intent i; 
i = new Intent(this, screen2.class);
//How to pass variable to screen2?
startActivity(i);

最佳答案

使用以下方法启动 Intent:

Intent foo = new Intent(this, viewContactQuick.class);
foo.putExtra("id", id);
this.startActivity(foo);

并且在 onCreate 事件中你可以获得 id

id = this.getIntent().getLongExtra("id", 0);

关于android - 如何打开带有附加参数的新屏幕?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2487663/

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