gpt4 book ai didi

android - 内部使用 intent.getextras()

转载 作者:行者123 更新时间:2023-11-30 04:08:02 27 4
gpt4 key购买 nike

Bundle extras = intent.getExtras();
if (extras != null) {
Toast.makeText(context, "Message recieved", Toast.LENGTH_SHORT).show();
}

extras 中存储的值是什么.. :?

最佳答案

extras 中存储的值是您放入 extras 的值。

要向 Intent 添加额外内容,请在开始之前执行以下操作。

intent = new Intent(v.getContext(),TextActivity.class);
intent.putExtra("Title", "I am An extra");
startActivityForResult(intent, -1);

然后在你的 Intent 中,阅读它:

String title = getIntent().getStringExtra("Title");

您问题中的代码只是在发现额外信息时发布一条弹出消息。目前您没有向 extras 添加任何内容。

关于android - 内部使用 intent.getextras(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11307595/

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