27

我正在使用 IntentService 在 android 上为我的应用程序运行后台服务。奇怪的是,我收到很多崩溃报告,其中传递给 onHandleIntent 的意图为空。我什至不确定这是怎么可能的,而且看起来非常奇怪。谁能建议为什么会发生这种情况?

堆栈跟踪

java.lang.NullPointerException
    at com.example.MyService.onHandleIntent(MyService.java:466)
    at android.app.IntentService$ServiceHandler.handleMessage(IntentService.java:65)
    at android.os.Handler.dispatchMessage(Handler.java:102)
    at android.os.Looper.loop(Looper.java:136)
    at android.os.HandlerThread.run(HandlerThread.java:61)

我的服务文件中的第 466 行出现空指针异常:

465 protected void onHandleIntent(Intent intent) {
466                Bundle data = intent.getExtras();   

服务启动如下:

serviceIntent = new Intent(this, MyService.class);
serviceIntent.putExtra("ip", ip);
serviceIntent.putExtra("port", port);
startService(serviceIntent);                         

编辑:我现在意识到我可能在滥用 IntentServices。当我启动服务时,我从 onHandleIntent() 启动了一些工作线程,即使在 onHandleIntent() 返回后它们也会继续运行。并通过绑定到服务和调用成员函数/回调与线程进行通信。为此,我将考虑使用更好的方式来使用服务,同时我仍然不明白传递的意图是如何为空的。我只能怀疑 Android 系统自己调用 onHandleIntent 的意图是空的,这看起来仍然很奇怪。有人可以解释为什么android系统可能会以这种方式调用它吗?

4

2 回答 2

18

See the Android documentation for IntentService.onStartCommand.

[The intent] may be null if the service is being restarted after its process has gone away, and it had previously returned anything except START_STICKY_COMPATIBILITY.

The restart behavior can be controlled to some degree with IntentService.setIntentRedelivery

于 2015-06-22T17:16:06.180 回答
0

我也得到了 null Intent inside onHandleIntent。原因是我在那个意图中传递了可包裹的对象。我无法理解原因,但在没有传递可包裹对象后我让它工作了。

于 2016-12-26T08:14:31.837 回答