gpt4 book ai didi

android - 当我们使用 Intent 停止服务时,额外的数据是否必须与之前的 Intent 相同?

转载 作者:行者123 更新时间:2023-11-29 18:26:30 24 4
gpt4 key购买 nike

比方说,我们按以下方式启动服务。

启动服务

Intent intent = new Intent(this, X.class);
intent.putExtra(X.TOKEN, "ABC");
startService(intent);

如果我们用不同的额外数据创建一个Intent,是否会停止之前启动的服务?

Intent intent = new Intent(this, X.class);
intent.putExtra(X.TOKEN, "DEF");
// Will this stop the previous started service?
stopService(intent);

最佳答案

When we stop a service using intent, is it a must that the extra data same as the previous intent?

没有。 Extras 不用于标识作为 Intent 目标的组件。

If we create an Intent with different extra data, will the previously started service be stopped?

是的,尽管在那种情况下额外功能毫无用处——我认为该服务无法访问它们。因此,如果方便的话,您可以跳过添加这些额外内容的代码。

关于android - 当我们使用 Intent 停止服务时,额外的数据是否必须与之前的 Intent 相同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58673713/

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