一般情况下,service 都是在后台运行的,后台 service 的优先级都是比较低的,当资源不足时,系统有可能回收正在运行的后台 service。
在一些场景下(如播放音乐),用户希望应用能够一直保持运行,此时就需要使用前台 service。前台 service 会始终保持正在运行的图标在系统状态栏显示。
使用前台 service 并不复杂,开发者只需在 service 创建的方法里,调用 keepbackgroundrunning()将 service 与通知绑定。调用 keepbackgroundrunning() 方法前需要在配置文件中声明 ohos.permission.keep_background_running 权限,该权限是 normal 级别,同时还需要在配置文件中添加对应的 backgroundmodes 参数。在 onstop() 方法中调用 cancelbackgroundrunning() 方法可停止前台 service。
使用前台 service 的 onstart() 代码示例如下:
// 创建通知,其中1005为notificationidnotificationrequest request = new notificationrequest(1005);notificationrequest.notificationnormalcontent content = new notificationrequest.notificationnormalcontent();content.settitle("title").settext("text");notificationrequest.notificationcontent notificationcontent = new notificationrequest.notificationcontent(content);request.setcontent(notificationcontent); // 绑定通知,1005为创建通知时传入的notificationidkeepbackgroundrunning(1005, request);
在配置文件中配置如下:
{ "name": ".serviceability", "type": "service", "visible": true, "backgroundmodes": ["datatransfer","location"]}