gpt4 book ai didi

android - 在 Android 中将字符串从一个 Activity 传递到另一个 Activity

转载 作者:行者123 更新时间:2023-12-02 10:23:51 27 4
gpt4 key购买 nike

这是我的字符串:

private final String easyPuzzle ="630208010200050089109060030"+
"008006050000187000060500900"+
"09007010681002000502003097";

我想在 9*9 数独板上的另一个 Activity 中显示该字符串。

最佳答案

您需要将其作为额外内容传递:

String easyPuzzle  = "630208010200050089109060030"+
"008006050000187000060500900"+
"09007010681002000502003097";

Intent i = new Intent(this, ToClass.class);
i.putExtra("epuzzle", easyPuzzle);
startActivity(i);

然后从您的新 Activity 中提取它,如下所示:

Intent intent = getIntent();
String easyPuzzle = intent.getExtras().getString("epuzzle");

关于android - 在 Android 中将字符串从一个 Activity 传递到另一个 Activity,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54126422/

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