Android Activity 之间传递 int 变量

发布于 2024-10-26 22:20:55 字数 77 浏览 2 评论 0原文

我正在制作一个问答游戏。但是,我需要添加一个可以修改的分数变量。游戏的运作方式是使用一些不同的活动。我如何传输这个分数并在整个活动中修改它。

I am making a quiz game. However, I need to add a score variable that can be modified. The way the game works is it uses a few different activities. How can I transmit this score and modify it throughout the activities.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

苦行僧 2024-11-02 22:20:55

下面是将整数从一个活动传递到另一个活动的示例。

启动 ActivityA 并向其传递 int,如下所示:

Intent theIntent = new Intent(this, ActivityA.class);
theIntent.putExtra("somename", intVariable);  
startActivity(theIntent);

从 ActivityA 中获取整数,如下所示:

int i = getIntent().getIntExtra("somename");

Here's an example of passing an integer from one activity to another activity.

Start ActivityA and pass it the int like this:

Intent theIntent = new Intent(this, ActivityA.class);
theIntent.putExtra("somename", intVariable);  
startActivity(theIntent);

Get the integer from within ActivityA like this:

int i = getIntent().getIntExtra("somename");
近箐 2024-11-02 22:20:55

尝试这个在我的 onCreate-method 活动中不起作用。
方法确实需要一个默认值作为第二个参数。

int id = getIntent().getIntExtra(DetailClick.ID_NAME,-1);

希望这有帮助!

trying this do not work in my activity onCreate-method.
Method do need a default value as second parameter.

int id = getIntent().getIntExtra(DetailClick.ID_NAME,-1);

Hope this helps!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文