这是第八篇文章主要讲的是如何实现一个前台服务
回顾可以到第一篇文章从头了解Service:
Android Service详解系列
一、首先我们要知道什么是前台服务
前台服务被认为是用户主动意识到的一种服务,因此在内存不足时,系统也不会考虑将其终止。 前台服务必须为状态栏提供通知,放在“正在进行”标题下方,这意味着除非服务停止或从前台移除,否则不能清除通知。
二、什么时候使用前台服务?
例如,应该将通过服务播放音乐的音乐播放器设置为在前台运行,这是因为用户明确意识到其操作。 状态栏中的通知可能表示正在播放的歌曲,并允许用户启动 Activity 来与音乐播放器进行交互。
三、实现前台服务的步骤
其实很简单就是将服务创建后创建一个Notification就好,利用提供好的方法进行显示和移除就好
创建一个Service,在这个Service的onCreate方法中创建一个Notification
@Override public void onCreate() { Notification.Builder builder = new Notification.Builder(this); PendingIntent contentIntent = PendingIntent.getActivity(this, 0, new Intent(this, MainActivity.class), 0); builder.setContentIntent(contentIntent); builder.setSmallIcon(R.mipmap.ic_launcher); builder.setTicker("Foreground Service Start"); builder.setContentTitle("Foreground Service"); builder.setContentText("Make this service run in the foreground."); Notification notification = builder.build(); startForeground(1, notification); }
要请求让服务运行于前台,请调用 startForeground()。此方法采用两个参数:唯一标识通知的整型数和状态栏的 Notification。
注意:提供给 startForeground() 的整型 ID 不得为 0。
2.使用绑定服务的Messenger,进行通信来实现前台移除通知的操作。
class IncomingHandler extends Handler { @Override public void handleMessage(Message msg) { switch (msg.what) { case MSG_SAY_HELLO: stopForeground(true); break; default: super.handleMessage(msg); } } }
至于如何使用Messenger请参考这篇文章Android Service详解(七)---绑定服务BoundService详解之Messenger双向通信的实现
3.如何移除前台服务呢?
要从前台移除服务,请调用 stopForeground()。此方法采用一个布尔值,指示是否也移除状态栏通知。 此方法不会停止服务。 但是,如果您在服务正在前台运行时将其停止,则通知也会被移除。
4.在前台调用方法进行通信告知服务移除通知
public void removeClick(View vie){ Message msg = Message.obtain(null, MyService.MSG_SAY_HELLO, 0, 0); try { mService.send(msg); } catch (RemoteException e) { e.printStackTrace(); } }
Android Service详解系列
————————————————
原文链接:https://blog.csdn.net/superbiglw/article/details/53158607