在Android上,如何编写代码,让我们点击第一页上的操作按钮就可以得到下一页的计算结果?
例如:在当前页面上我们有 2 个文本编辑器。我们在每个字段中输入数字,然后单击操作按钮以查看下一页上显示的结果。 ^^ 帮忙...
for example: on current page we have 2 Texteditors. We enter numbers to each of the field and then click a operator button to see the result that will be shown on the next page. ^^ help...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当您通过意图启动新活动时,您可以将额外的数据放入该意图,然后可以在被调用的活动中检索这些数据。
示例:
第一个活动:
第二个活动:
When you start a new activity via an Intent, then you can put extra data to that intent which can then be retrieved in the called activity.
Example:
First Activity:
Second Activity:
putExtra()
将结果作为额外内容包含在意图中,将结果发送到下一个活动。putExtra()
.您可以将变量定义为
然后只需使用其类名即可在应用程序中的任何位置使用它。
You can define a variable as
and then use it anywhere in application by just using its class name.