常驻内存的service

1.如果是系统程序 可以配置android:persistent =true
2.非系统的可以在绑定的时候这样
Notification notification = new Notification();  
notification.flags = Notification.FLAG_ONGOING_EVENT;  
notification.flags |= Notification.FLAG_NO_CLEAR;  
notification.flags |= Notification.FLAG_FOREGROUND_SERVICE;  
service.startForeground(1, notification); 

你可能感兴趣的:(常驻内存的service)