Android Activity 之间传递 int 变量
我正在制作一个问答游戏。但是,我需要添加一个可以修改的分数变量。游戏的运作方式是使用一些不同的活动。我如何传输这个分数并在整个活动中修改它。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
下面是将整数从一个活动传递到另一个活动的示例。
启动 ActivityA 并向其传递 int,如下所示:
从 ActivityA 中获取整数,如下所示:
Here's an example of passing an integer from one activity to another activity.
Start ActivityA and pass it the int like this:
Get the integer from within ActivityA like this:
尝试这个在我的 onCreate-method 活动中不起作用。
方法确实需要一个默认值作为第二个参数。
希望这有帮助!
trying this do not work in my activity onCreate-method.
Method do need a default value as second parameter.
Hope this helps!