服务意图 - 它会被 ActivityMonitor 捕获吗?

发布于 2024-12-14 09:59:20 字数 947 浏览 2 评论 0原文

我想监视是否在 Activity 中进行了 startService(...) 调用:

public void testShouldCallServiceOnSendButtonPress() throws Exception {
        assertNotNull(activity.pictureToSend);
        ActivityMonitor androidMock = help.mockIntent(1);
        TouchUtils.clickView(this, activity.sendButton);
        help.assertBehavior(androidMock);
    }

    public ActivityMonitor mockIntent(int numberOfExpectedIntentsSentToAndroid) {
        this.numberOfExpectedIntentsSentToAndroid = numberOfExpectedIntentsSentToAndroid;
        IntentFilter intentFilter = null;
        return androidMock = instrumentation.addMonitor(intentFilter, null, true);// catch all 
    }

上面我添加了一个包罗万象的监视器(应该捕获 Activity 和 Service 意图,对吧?!)

assertNotNull( this.startService(new Intent(this, MyService.class)) );

上面我验证了该服务是启动成功了,果然如此。

但是...万能监视器永远不会被击中,instrumentation.checkMonitorHit() 不 >= 1。

有什么想法吗?

I want to monitor if a startService(...) call is being made in an Activity:

public void testShouldCallServiceOnSendButtonPress() throws Exception {
        assertNotNull(activity.pictureToSend);
        ActivityMonitor androidMock = help.mockIntent(1);
        TouchUtils.clickView(this, activity.sendButton);
        help.assertBehavior(androidMock);
    }

    public ActivityMonitor mockIntent(int numberOfExpectedIntentsSentToAndroid) {
        this.numberOfExpectedIntentsSentToAndroid = numberOfExpectedIntentsSentToAndroid;
        IntentFilter intentFilter = null;
        return androidMock = instrumentation.addMonitor(intentFilter, null, true);// catch all 
    }

above I'm adding a catch-all monitor (should catch both Activity and Service intents, right ?!)

assertNotNull( this.startService(new Intent(this, MyService.class)) );

above I verify that the service was started successfully, and it is.

But... the catch-all monitor is never hit, instrumentation.checkMonitorHit() is not >= 1.

Any ideas why ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

澜川若宁 2024-12-21 09:59:20

查看Android源代码,似乎只有Activity.startActivity被调用Instrumentation覆盖。 startService 不会在 Activity 中被重写,因此它使用 Context 中的默认实现,因此它永远不会经过检测。

所以不,ActivityMonitor 不会捕获服务意图。

Looking at the Android source code, it seems that only Activity.startActivity is overriden with calls to Instrumentation. startService is not overriden in Activity, so it uses the default implementation from Context, so it never goes through the instrumentation.

So no, ActivityMonitor will not catch Service intents.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文