安卓Service

Service是什么

Service是一个可以在后台执行长时间运行操作而不提供用户界面的应用组件。服务可由其他应用组件启动,而且即使用户切换到其他应用,服务仍将在后台继续运行。 此外,组件可以绑定到服务,以与之进行交互,甚至是执行进程间通信 (IPC)。 例如,服务可以处理网络事务、播放音乐,执行文件 I/O 或与内容提供程序交互,而所有这一切均可在后台进行。
服务基本上分为两种形式:
启动
当应用组件(如 Activity)通过调用 startService()启动服务时,服务即处于“启动”状态。一旦启动,服务即可在后台无限期运行,即使启动服务的组件已被销毁也不受影响。 已启动的服务通常是执行单一操作,而且不会将结果返回给调用方。例如,它可能通过网络下载或上传文件。 操作完成后,服务会自行停止运行。
绑定
当应用组件通过调用 [bindService()](https://developer.android.com/reference/android/content/Context.html#bindService(android.content.Intent, android.content.ServiceConnection, int))绑定到服务时,服务即处于“绑定”状态。绑定服务提供了一个客户端-服务器接口,允许组件与服务进行交互、发送请求、获取结果,甚至是利用进程间通信 (IPC) 跨进程执行这些操作。 仅当与另一个应用组件绑定时,绑定服务才会运行。 多个组件可以同时绑定到该服务,但全部取消绑定后,该服务即会被销毁。

安卓Service_第1张图片
Service.png

服务的 整个生命周期从调用 onCreate()开始起,到 onDestroy()返回时结束。与 Activity 类似,服务也在 onCreate()中完成初始设置,并在 onDestroy()中释放所有剩余资源。例如,音乐播放服务可以在 onCreate()中创建用于播放音乐的线程,然后在 onDestroy()中停止该线程。无论服务是通过 startService()还是 [bindService()]( https://developer.android.com/reference/android/content/Context.html#bindService(android.content.Intent, android.content.ServiceConnection, int))创建,都会为所有服务调用 onCreate()和 onDestroy()方法。

服务的有效生命周期从调用 [onStartCommand()](https://developer.android.com/reference/android/app/Service.html#onStartCommand(android.content.Intent, int, int)或 onBind()方法开始。每种方法均有{Intent对象,该对象分别传递到 startService()或 [bindService()](https://developer.android.com/reference/android/content/Context.html#bindService(android.content.Intent,android.content.ServiceConnection, int))。对于启动服务,有效生命周期与整个生命周期同时结束(即便在 [onStartCommand()](https://developer.android.com/reference/android/app/Service.html#onStartCommand(android.content.Intent, int, int))返回之后,服务仍然处于活动状态)。对于绑定服务,有效生命周期在 onUnbind()返回时结束。

注:尽管启动服务是通过调用 stopSelf()或 stopService()来停止,但是该服务并无相应的回调(没有 onStop()回调)。因此,除非服务绑定到客户端,否则在服务停止时,系统会将其销毁 — onDestroy()是接收到的唯一回调。

原文地址:https://vhcffh.com/archives

你可能感兴趣的:(安卓Service)