在Android上,如何编写代码,让我们点击第一页上的操作按钮就可以得到下一页的计算结果?

发布于 2024-12-18 09:18:00 字数 72 浏览 0 评论 0原文

例如:在当前页面上我们有 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 技术交流群。

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

发布评论

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

评论(3

霓裳挽歌倾城醉 2024-12-25 09:18:00

当您通过意图启动新活动时,您可以将额外的数据放入该意图,然后可以在被调用的活动中检索这些数据。

示例:

第一个活动:

Intent i = new Intent(CatalogueOverviewActivity.this, CatalogueStartActivity.class);
i.putExtra(CatalogueStartActivity.EXTRA_CATALOGUENUMBER, pagenumber);
startActivity(i);

第二个活动:

@Override
protected void onCreate(Bundle savedInstanceState)
{
    ...
    Bundle extras = getIntent().getExtras();
    int catNr = extras.getInt(EXTRA_CATALOGUENUMBER);
    ...
}

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:

Intent i = new Intent(CatalogueOverviewActivity.this, CatalogueStartActivity.class);
i.putExtra(CatalogueStartActivity.EXTRA_CATALOGUENUMBER, pagenumber);
startActivity(i);

Second Activity:

@Override
protected void onCreate(Bundle savedInstanceState)
{
    ...
    Bundle extras = getIntent().getExtras();
    int catNr = extras.getInt(EXTRA_CATALOGUENUMBER);
    ...
}
小草泠泠 2024-12-25 09:18:00
  1. 从两个 EditText 字段读取值。
  2. 计算结果。
  3. 通过使用 putExtra() 将结果作为额外内容包含在意图中,将结果发送到下一个活动。
  4. 在下一个活动中,从意图中检索结果。
  1. Read the values from the two EditText fields.
  2. Calculate the result.
  3. Send the result to the next activity by including it as an extra in the intent with putExtra().
  4. In the next activity, retrieve the result from the intent.
梦巷 2024-12-25 09:18:00

您可以将变量定义为

 public static int integerTest;

然后只需使用其类名即可在应用程序中的任何位置使用它。

You can define a variable as

 public static int integerTest;

and then use it anywhere in application by just using its class name.

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