最佳答案
因此,我不确定在哪里/如何实现这个方法,使我的服务在前台运行。目前,我通过另一个活动开始我的服务:
Intent i = new Intent(context, myService.class);
context.startService(i);
然后在 myServices 的 onCreate ()中尝试 startForeground () ... ?
Notification notification = new Notification();
startForeground(1, notification);
所以,是的,我有点迷茫,不确定如何实现这一点。