gpt4 book ai didi

android - 在 onHandleIntent 之前捕获 IntentService Intent

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:01:55 27 4
gpt4 key购买 nike

我有一个 IntentService 可以对要进行的 Web 服务调用进行排队。我将一个整数作为 Extra 传递给每个 Intent,它定义了要进行的 Web 服务调用的类型。

我想创建一种情况,如果将执行特定 Web 服务的 Intent 传递给 IntentService,并且 IntentService 队列中已经存在用于同一 Web 服务的 Intent,则不处理 Intent。理想情况下,我会丢弃 Intent,但我也可以向其中添加一个 Extra,让代码知道在处理 Intent 后跳过它。当 Intent 进来时,我可以跟踪哪些 Intents 在我添加到 IntentService 的某个对象中的队列中。

但是,当 Intent 传递给 IntentService 时,我看不到可以拦截它的地方。据我所知,我只能在调用 onHandleIntent 时触摸它,那已经太晚了。

有什么想法吗?

最佳答案

严格来说这不是可取的,但我建议这样:

public int onStartCommand (Intent intent, int flags, int startId)
{
// do your intent modification here
//if(intentIsDuplicate(intent))

// make sure you call the super class to ensure everything performs as expected
return super.onStartCommand(intent, flags, startId);
}

如果可行,请告诉我。

关于android - 在 onHandleIntent 之前捕获 IntentService Intent ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7381915/

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