后台服务android没有通知

时间:2016-05-17 09:54:54

标签: android service background

我需要创建一个Android服务,一旦你退出应用程序,该服务没有关闭,但没有通知。我使用了startForegound camando,但这需要更加突出的通知。 谢谢大家的回复

1 个答案:

答案 0 :(得分:0)

您可以使用START_STICKY让您的服务持续运行。

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
    handleCommand(intent);
    // We want this service to continue running until it is explicitly
    // stopped, so return sticky.
    return START_STICKY;
}