gpt4 book ai didi

java - 检索意图附加信息

转载 作者:行者123 更新时间:2023-12-01 18:53:23 25 4
gpt4 key购买 nike

我在我的项目中使用了意图,但似乎我不知道如何使用它。

这是我的“设置” Activity :

Intent i = new Intent(SettingsActivity.this, MainActivity.class);

i.putExtra("double", seekbar.getProgress());
startActivity(i);

这是我的“主要” Activity :

String double_places;
Intent intent = getIntent();
double_places = intent.getStringExtra("double");

TextView textView = findViewById(R.id.textView);
textView.setText(double_places);

问题出在哪里?

最佳答案

String double_places = getIntent().getStringExtra("double");

TextView textView = findViewById(R.id.textView);
textView.setText(double_places);

关于java - 检索意图附加信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59698029/

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