我需要创建一个Android服务,一旦你退出应用程序,该服务没有关闭,但没有通知。我使用了startForegound camando,但这需要更加突出的通知。 谢谢大家的回复
答案 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;
}