自升级到
Android 4.3以来,我的应用程序正在显示持久系统通知:
它写道:
[My App] is running
Touch for more information or to stop the app
它为什么存在,我能做些什么呢?
解决方法
这个行为
is triggered by applications (ab)using
Service.startForeground()
.
使用startForeground()
背后的想法是,您提供一个通知,用户可以在应用程序运行时与您进行交互.例如,如果它是一个音乐播放器,请确保您提供持久性通知作为该函数的参数,以便Android知道用户已经有办法让您的应用调用stopForeground().
您基本上可以将此视为“公共羞辱”,因为应用程序应该在平台上表现良好,并且如果需要,让系统终止它们.
(就我而言,罪魁祸首实际上是Robospice;有问题的是here’s the line和the associated issue.)