简体   繁体   English

为什么在我调用stopService后服务仍然(似乎仍)有效

[英]Why the Service still ( Seem to Be )alive after I call stopService

I have a Service of My App,and I use it for Socket.IO. 我有我的应用程序服务,并将其用于Socket.IO。 I don't want to allow binding,so: 我不想允许绑定,所以:

/**
 * You must always implement this method, but if you don't want to allow binding
 * then you should return null.
 */
@Override
public IBinder onBind(@NonNull Intent intent) {
    return null;
}


@Override
public int onStartCommand(@NonNull Intent intent, int flags, int startId) {
    return START_NOT_STICKY;
}

And I init the Socket.IO in the onCreate(): 然后在onCreate()中初始化Socket.IO:

@Override
public void onCreate() {
    super.onCreate();
    mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    Log.d(TAG, "Service Create");
    //...More
    setForeground();
    initSocketIO();
}


private void setForeground() {
    Intent notificationIntent = new Intent(this, LiveTabActivity.class);
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
    //getNotification() is deprecated in API16
    if (Build.VERSION.SDK_INT >= 16) {
        Notification notification = new Notification.Builder(context)
                .setContentTitle(getString(R.string.app_name))
                .setContentText(getString(R.string.service_running))
                .setSmallIcon(R.drawable.defimgs)
                .setLargeIcon(BitmapFactory.decodeResource(getResources(), R.mipmap.md1))
                .setContentIntent(pendingIntent).build();
        startForeground(100, notification);
        return;
    }
    Notification notification = new Notification.Builder(context)
            .setContentTitle(getString(R.string.app_name))
            .setContentText(getString(R.string.service_running))
            .setSmallIcon(R.drawable.defimgs)
            .setLargeIcon(BitmapFactory.decodeResource(getResources(), R.mipmap.md1))
            .setContentIntent(pendingIntent).getNotification();
    startForeground(100, notification);
}

@Override
public void onDestroy() {
    super.onDestroy();
    Log.d(TAG, "Service onDestroy");
    //...more
}

In initSocketIO() I init the data of Socket.IO so that I can receive the Message of the server.And when the Service receive the message ,It will have a Log and push a Notification. 在initSocketIO()中,我初始化Socket.IO的数据,以便可以接收服务器的消息。当服务接收到该消息时,它将具有一个日志并推送一个通知。

After that the app work well.But in this App I want to provide the function for user to logout their account.So when user select to logout this App should stop the Service. 之后该应用程序运行良好。但是在此应用程序中,我想为用户提供注销帐户的功能。因此,当用户选择注销该应用程序时,应停止该服务。

But when I use stopService() in the Activity to stop the Service, I can see the "Service onDestroy" in the LogCat but the Service is still alive! 但是,当我在Activity中使用stopService()停止服务时,我可以在LogCat中看到“ Service onDestroy”,但该服务仍然有效! Because I can see the Log in LogCat when the Service receive message from Server! 因为当服务从服务器收到消息时,我可以在LogCat中看到Log in!

Even if I use EventBus to send a Event to this Service to make this Service call stopSelf by itself , this problem remains. 即使我使用EventBus将事件发送到此服务以使该服务自行调用stopSelf,也仍然存在此问题。

So How can I stop the Service which start with Foreground ? 那么,如何停止以Foreground开头的服务? Thanks for your help. 谢谢你的帮助。

You do not show it in your code, but it sounds like you still have an active listener for socketIO. 您没有在代码中显示它,但是听起来您仍然有一个活动的socketIO侦听器。 In onDestroy , you need to call off and disconnect on the Socket you previously created in initSocketIO . onDestroy ,你需要调用offdisconnectSocket您先前在创建initSocketIO Also, if you started any background threads yourself in the service, you need to make sure they are shutdown in onDestroy . 另外,如果您自己在服务中启动了任何后台线程,则需要确保在onDestroy中将其关闭。

Service is destroyed , but the listener of Socket.IO is still alive . 服务已销毁,但Socket.IO的侦听器仍处于活动状态。 Remember to close Socket.IO and shutdown the background thread. 记住要关闭Socket.IO并关闭后台线程。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM