Service是长时间运行在后台,不与用户交互的组件
1.Service的两种形式
Started
以startService()启动,一旦启动运行在后台,即使启动它的组件消失,一般来说,执行单一的操作,且无返回值
Bound
以bindService()启动,Bound提供了客户端接口,允许组件与服务互动,发送请求,收到回复,甚至进行进程间通信。只要组件绑定到服务,服务就开始运行,允许多个组件同事绑定到服务,但是只有所有组件都取消绑定后,服务才销毁
Service通过调用一对回调函数,可同时工作在以上两种形式:onStartCommand()与onBind()
注意:
Service运行在主进程的主线程上,并没有为它创建自己的线程或分立进程,这就意味着若Service进行一些Cpu密集型工作或阻塞工作,必须新开线程进行处理,避免发生ANR
2.Sevice类的回调函数
onStartCommand()
由其他组件调用StartService()时自动回调,可由其他组件调用 stopSelf()或
stopService()停止此Service
onBind()
由其他组件调用bindService()时自动回调,必须通过返回IBinder提供客户端与服务的接口,如果你不想实现绑定,可返回null
onCreate()
Service第一次被创建时,如果Service已经运行,则此函数不会被调用。onCreate()被调用在onStartCommand()与onBind()之前
onDestroy()
3.创建一个Started Service
Started Service是通过组件调用startService(),进而调用Service的onStartCommand()方法的Service,当一个Service被Start,它的生命周期就是独立的,不会因为启动它的组件销毁而销毁。当Service工作完成后,可以通过调用stopSelf()销毁自己,也可以通过别的组件调用stopService()来销毁。由其他组件调用startService()传递的Intent由Service的onStartCommand()来接收
继承IntentService类
不需要Service同时处理多个请求时,继承IntentService
(1)创建一个独立于主线程的默认的工作线程来执行将所有Intent交付给onStartCommand()
(2)创建一个队列,实现同一时刻只有一个Intent到onHandleIntent()
(3)所有请求完成后,停止Service,所以不必调用StopSelf()
(4)提供onBind()回调的实现,默认返回NULL
(5)提供onStartCommand()回调的实现,发送Intent到工作队列,之后到onHandleIntent()实现
4.创建Bound Service
Bound Service允许应用组件调用BoundService()绑定来创建长时间链接
需要与用户组间交流或者暴露应用功能给其他应用程序时选用BoundService(),必须实现onBind()回调函数,且需返回
IBinder
控件通过 bindService()与服务绑定,unbindServi
ce()解除与服务器的绑定
5.发送用户通知给用户
Once running, a service can notify the user of events using Toast Notifications or Status Bar Notifications.服务一旦运行,就可以使用Toast Notifications或Status Bar Notifications通知用户事件
6.Service运行在前台
1
2
3
4
5
6 |
Notification notification = new
Notification(R.drawable.icon,getText(R.string.ticker_text),System.currentTimeMillis()); Intent notificationIntent = new
Intent( this , ExampleActivity. class ); PendingIntent pendingIntent = PendingIntent.getActivity( this , 0 , notificationIntent, 0 ); notification.setLatestEventInfo( this , getText(R.string.notification_title), getText(R.string.notification_message), pendingIntent); startForeground(ONGOING_NOTIFICATION_ID, notification); |
startForeground()与 stopForeground()
7.Service生命周期
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34 |
public
class
ExampleService extends
Service { int
mStartMode; // indicates how to behave if the service is killed IBinder mBinder; // interface for clients that bind boolean
mAllowRebind; // indicates whether onRebind should be used @Override public
void
onCreate() { // The service is being created } @Override public
int
onStartCommand(Intent intent, int
flags, int
startId) { // The service is starting, due to a call to startService() return
mStartMode; } @Override public
IBinder onBind(Intent intent) { // A client is binding to the service with bindService() return
mBinder; } @Override public
boolean
onUnbind(Intent intent) { // All clients have unbound with unbindService() return
mAllowRebind; } @Override public
void
onRebind(Intent intent) { // A client is binding to the service with bindService(), // after onUnbind() has already been called } @Override public
void
onDestroy() { // The service is no longer used and is being destroyed } } |
原文:http://www.cnblogs.com/Eudora/p/3539709.html