当前位置:   article > 正文

Android 中 Service 全面解析与使用_android:enabled="true

android:enabled="true

一、概念:
 Service(服务)是Android中四大组件之一。是一个没有用户界面的在后台运行执行耗时操作的应用组件。其他应用组件能够启动Service,并且当用户切换到另外的应用场景,Service将持续在后台运行。另外,一个组件能够绑定到一个service与之交互(IPC机制),例如,一个service可能会处理网络操作,播放音乐,操作文件I/O或者与内容提供者(content provider)交互,所有这些活动都是在后台进行。
 运行种类分类:

类别区别优点缺点应用
本地服务(Local)该服务依附在主进程上服务依附在主进程上而不是独立的进程,这样在一定程度上节约了资源,另外Local服务因为是在同一进程因此不需要IPC,也不需要AIDL。相应bindService会方便很多主进程被kill后,服务便会终止非常常见的应用如:HTC音乐播放服务,天天动听音乐播放服务
远程服务(Remote)该服务是独立的进程 服务为独立的进程,对应进程名格式为所在包名加上你指定的android:process字符串。由于是独立的进程,因此在Activity所在进程被kill的时候,该服务依然在运行,不受其他进程影响,有利于为多个进程提供服务具有较高的灵活性该服务是独立的进程,会占用一定资源,并且使用AIDL进行IPC,稍微麻烦一点一些提供系统服务的Service,这种Service是常驻的

其实remote服务还是很少见的,并且一般都是系统服务


 
运行类型分类:

类别区别应用
前台服务会在通知一栏显示ONGOING的Notification当服务被终止的时候,通知一栏Notification也会消失,这样对于用户有一定的通知作用。常见的如音乐播放服务
后台服务默认的服务即为后台服务,即不会在通知一栏显示ONGOING的Notification当服务被终止的时候,用户是看不到效果的。某些不需要运行或终止提示的服务,如天气更新,日期同步,邮件同步等

前台服务会调用startForeground(Android2.0以前的版本为setForeground)使服务成为前台


 
启动方式分类

类别区别
startService启动主要用于启动一个服务执行后台任务,不进行通信,停止服务使用stopService
bindService启动该方法启动的服务要进行通信。停止服务使用unbindService
startService同时也gindService启动停止服务同时使用stopService与unbindService

二、生命周期:
 首先看下周期运行图
 
 1:Context.startService()启动的流程
  启动的时候:Context.startService() ---> onCreate() ---> onStartCommand()(android2.0以前版本为onStart())
  销毁的时候:ontext.stopService() ---> onDestroy()
  如果Service没运行,则此时会先调用onCreate()方法,然后再调用onStartCommand();
  如果Service已经在运行,则只调用onStartCommand()

 2:Context.bindService()启动的流程
  启动的时候:Context.bindService() ---> onCreate() ---> onBind()
  销毁的时候:onUnibind() ---> onDestroy()
  onBind()将会給客户端返回一个IBind接口的实例,此时客户端可以去调用服务的方法,不过此时Activity与Service算是绑定在一起了,即bindService不存在(如Activity被finish()的时候),那么此时的Service也会退出
 3:退出条件(注意)
  startService(一直运行,不管对应程序的Activity是否在运行):
   A、调用stopService
   B、调用自身的stopSelf方法
   C、当系统资源不足,可能被Android系统结束掉
  bindService:
   A、调用Context.unbindService断开连接(建议)
   B、调用bindService的Context不存在了(如Activity被finish的时候、屏幕旋转时,Activity重新创建,之前的Context不存在了),系统会自动停止Service,对应onDestroy将被调用
  startService与bindService:
   A、同时满足上面两个退出条件,与顺序无关
  服务退出后,onDestroy方法将会被调用,在这里应该做一些清除工作,如停止在Service中创建并运行的线程等

三、使用方法:
 1:使用startService启动服务
  不管Local还是Remote,启动与停止方法都是一样。在Androidmanifest.xml中注册service;
  下面给出Service中的代码框架:

  1. import android.app.Service;
  2. import android.content.Intent;
  3. import android.os.IBinder;
  4. public class ExampleService extends Service {
  5. /**
  6. * Service的虚方法,不得不实现
  7. * 返回null,
  8. */
  9. @Override
  10. public IBinder onBind(Intent intent) {
  11. // TODO Auto-generated method stub
  12. return null;
  13. }
  14. public void onCreate() {
  15. super.onCreate();
  16. }
  17. public int onStartCommand (Intent intent, int flags, int startId) {
  18. return super.onStartCommand(intent, flags, startId);
  19. }
  20. public void onDestroy () {
  21. super.onDestroy();
  22. }
  23. }

  启动:startService(new Intent(this, ExampleService.class));
  启动:stopService(new Intent(this, ExampleService.class));
 2:使用bindService启动服务
  A、Local服务绑定:首先在Service中实现Service的抽象方法断断onBind,并返回一个实现IBinder接口的对象
   下面为Service的代码:

  1. import android.app.Service;
  2. import android.content.Intent;
  3. import android.os.Binder;
  4. import android.os.IBinder;
  5. public class LocalService extends Service {
  6. /**
  7. * 直接继承Binder而不是IBinder,因为Binder实现了IBnder接口,这样可以少做很多工作
  8. */
  9. public class ExampleBinder extends Binder {
  10. public LocalService getService() {
  11. return LocalService.this;
  12. }
  13. public int addTest (int a, int b) {
  14. return a + b;
  15. }
  16. }
  17. public ExampleBinder eBinder = null;
  18. @Override
  19. public IBinder onBind(Intent intent) {
  20. // TODO Auto-generated method stub
  21. return eBinder;
  22. }
  23. public void onCreate() {
  24. super.onCreate();
  25. eBinder = new ExampleBinder();
  26. }
  27. }

   上面方法主要在于onBind(Intent)返回了一个实现了IBinder接口的对象,这个对象将用于Activity与Local Service通信。
   下面为Activity中的代码:

  1. import android.app.Activity;
  2. import android.content.ComponentName;
  3. import android.content.Context;
  4. import android.content.Intent;
  5. import android.content.ServiceConnection;
  6. import android.os.Bundle;
  7. import android.os.IBinder;
  8. import android.util.Log;
  9. import android.view.View;
  10. import android.view.View.OnClickListener;
  11. public class MainActivity extends Activity {
  12. private ServiceConnection sc = null;
  13. private boolean isBind = false;
  14. @Override
  15. protected void onCreate(Bundle savedInstanceState) {
  16. super.onCreate(savedInstanceState);
  17. setContentView(R.layout.activity_main);
  18. sc = new ServiceConnection() {
  19. @Override
  20. public void onServiceConnected(ComponentName name, IBinder service) {
  21. // TODO Auto-generated method stub
  22. LocalService.ExampleBinder mBinder = (LocalService.ExampleBinder) service;
  23. Log.d("test", "5 + 8 = " + mBinder.addTest(5, 8));
  24. }
  25. @Override
  26. public void onServiceDisconnected(ComponentName arg0) {
  27. // TODO Auto-generated method stub
  28. }
  29. };
  30. findViewById(R.id.bt_bind).setOnClickListener(new OnClickListener() {
  31. @Override
  32. public void onClick(View arg0) {
  33. // TODO Auto-generated method stub
  34. bindService(new Intent(MainActivity.this, LocalService.class), sc, Context.BIND_AUTO_CREATE);
  35. isBind = true;
  36. }
  37. });
  38. findViewById(R.id.bt_unbind).setOnClickListener(new OnClickListener() {
  39. @Override
  40. public void onClick(View arg0) {
  41. // TODO Auto-generated method stub
  42. if(isBind) {
  43. unbindService(sc);
  44. isBind = false;
  45. }
  46. }
  47. });
  48. }
  49. }

   通过ServiceConnection接口来取得建立连接与连接意外丢失的回调。Service.onBind如果返回null,则调用bindService会启动Service,但不会连接上Service,因此ServiceConnection.onServiceConnected不会被调用,但仍然需要使用unbindService函数断开它
  B、Remote服务绑定:Remote服务绑定由于服务是在另外一个进程,因此需要用到Android的IPC机制。
   在AndroidManifest.xml中

				<service android:enabled="true" android:name=".TestService" android:process=":remote"/>

   下面为ITestService.aidl的代码:

				package com.iceskysl.TestServiceHolder; 

				interface ITestService
				{
					int getCount();
				}

   下面为Service的代码:

  1. package com.iceskysl.TestServiceHolder;
  2. import android.app.Notification;
  3. import android.app.NotificationManager;
  4. import android.app.PendingIntent;
  5. import android.app.Service;
  6. import android.content.Intent;
  7. import android.os.IBinder;
  8. import android.os.RemoteException;
  9. import android.util.Log;
  10. public class TestService extends Service {
  11. private static final String TAG = "TestService";
  12. private NotificationManager _nm;
  13. private boolean threadEnable = true;
  14. private int i = 0;
  15. private ITestService.Stub serviceBinder = new ITestService.Stub() {
  16. @Override
  17. public int getCount() throws RemoteException {
  18. // TODO Auto-generated method stub
  19. return i;
  20. }
  21. };
  22. @Override
  23. public IBinder onBind(Intent i) {
  24. Log.e(TAG, "============> TestService.onBind");
  25. return serviceBinder;
  26. }
  27. @Override
  28. public boolean onUnbind(Intent i) {
  29. Log.e(TAG, "============> TestService.onUnbind");
  30. return false;
  31. }
  32. @Override
  33. public void onRebind(Intent i) {
  34. Log.e(TAG, "============> TestService.onRebind");
  35. }
  36. @Override
  37. public void onCreate() {
  38. Log.e(TAG, "============> TestService.onCreate");
  39. _nm = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
  40. showNotification();
  41. new Thread() {
  42. public void run() {
  43. try {
  44. while (threadEnable) {
  45. sleep(1000);
  46. Log.d(TAG, "Count = " + (++i));
  47. }
  48. } catch (InterruptedException e) {
  49. e.printStackTrace();
  50. }
  51. }
  52. }.start();
  53. }
  54. @Override
  55. public void onStart(Intent intent, int startId) {
  56. Log.e(TAG, "============> TestService.onStart");
  57. }
  58. @Override
  59. public void onDestroy() {
  60. _nm.cancel(R.string.service_started);
  61. threadEnable = false;
  62. Log.e(TAG, "============> TestService.onDestroy");
  63. }
  64. private void showNotification() {
  65. Notification notification = new Notification(R.drawable.face_1,
  66. "Service started", System.currentTimeMillis());
  67. PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
  68. new Intent(this, TestServiceHolder.class), 0);
  69. // must set this for content view, or will throw a exception
  70. notification.setLatestEventInfo(this, "Test Service",
  71. "Service started", contentIntent);
  72. _nm.notify(R.string.service_started, notification);
  73. }
  74. public int getCount() {
  75. return i;
  76. }
  77. }

   下面为Activity代码:

  1. package com.iceskysl.TestServiceHolder;
  2. import android.app.Activity;
  3. import android.content.ComponentName;
  4. import android.content.Context;
  5. import android.content.Intent;
  6. import android.content.ServiceConnection;
  7. import android.os.Bundle;
  8. import android.os.IBinder;
  9. import android.os.RemoteException;
  10. import android.util.Log;
  11. import android.view.View;
  12. import android.view.View.OnClickListener;
  13. import android.widget.Button;
  14. import android.widget.Toast;
  15. public class TestServiceHolder extends Activity {
  16. private boolean _isBound;
  17. private ITestService _boundService = null;
  18. private static final String TAG = "TestServiceHolder";
  19. private IBinder _service;
  20. /** Called when the activity is first created. */
  21. @Override
  22. public void onCreate(Bundle savedInstanceState) {
  23. super.onCreate(savedInstanceState);
  24. setContentView(R.layout.main);
  25. setTitle("Service Test");
  26. initButtons();
  27. }
  28. private ServiceConnection _connection = new ServiceConnection() {
  29. public void onServiceConnected(ComponentName className, IBinder service) {
  30. _boundService = ITestService.Stub.asInterface(service);
  31. Toast.makeText(TestServiceHolder.this, "Service connected",
  32. Toast.LENGTH_SHORT).show();
  33. Log.e(TAG, "=====>onServiceConnected()");
  34. }
  35. public void onServiceDisconnected(ComponentName className) {
  36. // unexpectedly disconnected,we should never see this happen.
  37. _boundService = null;
  38. Toast.makeText(TestServiceHolder.this, "Service connected",
  39. Toast.LENGTH_SHORT).show();
  40. Log.e(TAG, "<=====onServiceDisconnected()");
  41. }
  42. };
  43. private void initButtons() {
  44. Button buttonStart = (Button) findViewById(R.id.start_service);
  45. buttonStart.setOnClickListener(new OnClickListener() {
  46. public void onClick(View arg0) {
  47. startService();
  48. }
  49. });
  50. Button buttonStop = (Button) findViewById(R.id.stop_service);
  51. buttonStop.setOnClickListener(new OnClickListener() {
  52. public void onClick(View arg0) {
  53. stopService();
  54. }
  55. });
  56. Button buttonBind = (Button) findViewById(R.id.bind_service);
  57. buttonBind.setOnClickListener(new OnClickListener() {
  58. public void onClick(View arg0) {
  59. bindService();
  60. }
  61. });
  62. Button buttonUnbind = (Button) findViewById(R.id.unbind_service);
  63. buttonUnbind.setOnClickListener(new OnClickListener() {
  64. public void onClick(View arg0) {
  65. unbindService();
  66. }
  67. });
  68. }
  69. private void startService() {
  70. Intent i = new Intent(this, TestService.class);
  71. this.startService(i);
  72. }
  73. private void stopService() {
  74. Intent i = new Intent(this, TestService.class);
  75. this.stopService(i);
  76. }
  77. private void bindService() {
  78. Intent i = new Intent(this, TestService.class);
  79. bindService(i, _connection, Context.BIND_AUTO_CREATE);
  80. _isBound = true;
  81. }
  82. private void unbindService() {
  83. if (_boundService != null) {
  84. try {
  85. Log.e(TAG,"_boundService.getCount() = "+ _boundService.getCount());
  86. } catch (RemoteException e) {
  87. e.printStackTrace();
  88. }
  89. }
  90. if (_isBound) {
  91. unbindService(_connection);
  92. _isBound = false;
  93. }
  94. }
  95. }

四、创建前台服务
 代码:

  1. import java.lang.reflect.Method;
  2. import android.app.Notification;
  3. import android.app.NotificationManager;
  4. import android.app.PendingIntent;
  5. import android.app.Service;
  6. import android.content.Context;
  7. import android.content.Intent;
  8. import android.os.IBinder;
  9. public class ForegroundService extends Service {
  10. private static final Class[] mStartForegroundSignature = new Class[] {
  11. int.class, Notification.class };
  12. private static final Class[] mStopForegroundSignature = new Class[] {
  13. boolean.class };
  14. private NotificationManager mNM = null;
  15. private Method mStartForeground = null;
  16. private Method mStopForeground = null;
  17. private Object[] mStartForegroundArgs = new Object[2];
  18. private Object[] mStopForegroundArgs = new Object[1];
  19. @Override
  20. public IBinder onBind(Intent intent) {
  21. // TODO Auto-generated method stub
  22. return null;
  23. }
  24. public void onCreate() {
  25. super.onCreate();
  26. mNM = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
  27. try {
  28. mStartForeground = ForegroundService.class.getMethod("startForeground", mStartForegroundSignature);
  29. mStopForeground = ForegroundService.class.getMethod("stopForeground", mStopForegroundSignature);
  30. } catch(NoSuchMethodException e) {
  31. mStartForeground = mStopForeground = null;
  32. }
  33. // 我们并不需要为notification.flags 设置FLAG_ONGOING_EVENT,因为前台服务的notification.flags总是默认包含了那个标志位
  34. Notification notification = new Notification(R.drawable.icon, "Foreground Service Started.", System.currentTimeMillis());
  35. PendingIntent contentIntent = PendingIntent.getActivity(this, 0, new Intent(this, MainActivity.class), 0);
  36. notification.setLatestEventInfo(this, "Foreground Service", "Foreground Service Started.", contentIntent);
  37. // 注意使用startForeground, id 为0将不会显示notification
  38. startForegroundCompat(1, notification);
  39. }
  40. public void onDestroy() {
  41. super.onDestroy();
  42. stopForegroundCompat(1);
  43. }
  44. private void startForegroundCompat(int id, Notification n) {
  45. if(mStartForeground != null) {
  46. mStartForegroundArgs[0] = id;
  47. mStartForegroundArgs[1] = n;
  48. try {
  49. mStartForeground.invoke(this, mStartForegroundArgs);
  50. } catch(Exception e) {
  51. e.printStackTrace();
  52. }
  53. return;
  54. }
  55. // API Level >= 5
  56. startForeground(id, n);
  57. // API Level < 5
  58. /*startForeground();
  59. mNM.notify(id, n);*/
  60. }
  61. private void stopForegroundCompat(int id) {
  62. if(mStopForeground != null) {
  63. mStopForegroundArgs[0] = Boolean.TRUE;
  64. try {
  65. mStopForeground.invoke(this, mStopForegroundArgs);
  66. } catch(Exception e) {
  67. e.printStackTrace();
  68. }
  69. return;
  70. }
  71. // API Level >= 5
  72. stopForeground(true);
  73. // API Level < 5
  74. // 在setForeground之前调用cancel,因为我们有可能在取消前台服务之后的那一瞬间被kill掉。这个时候notification便永远不会从通知一栏移除mNM.cancel(id);
  75. /*mNM.cancel(id);
  76. setForeground(false);*/
  77. }
  78. }

五、使用情景
 1:如果你只是想要启动一个后台服务长期进行某项任务那么使用 startService 便可以了。
 2:如果你想要与正在运行的 Service 取得联系
  A、使用 broadcast,缺点是如果交流较为频繁,容易造成性能上的问题,并且 BroadcastReceiver 本身执行代码的时间是很短的(也许执行到一半,后面的代码便不会执行)
  B、使用 bindService,没有上面的问题,因此选择使用 bindService(这个时候便同时在使用 startService 和 bindService 了,这在 Activity 中更新 Service 的某些运行状态是相当有用的)
 3:如果你的服务只是公开一个远程接口,供连接上的客服端(android 的 Service 是C/S架构)远程调用执行方法。这个时候你可以不让服务一开始就运行,而只用 bindService ,这样在第一次 bindService 的时候才会创建服务的实例运行它,这会节约很多系统资源,特别是如果你的服务是Remote Service,那么该效果会越明显(当然在 Service 创建的时候会花去一定时间,你应当注意到这点)。
六、Service 元素的常见选项
 android:name:服务类名
 android:label:服务的名字,如果此项不设置,那么默认显示的服务名则为类名
 android:icon:服务的图标
 android:permission:申明此服务的权限,这意味着只有提供了该权限的应用才能控制或连接此服务
 android:process:表示该服务是否运行在另外一个进程,如果设置了此项,那么将会在包名后面加上这段字符串表示另一进程的名字
 android:enabled:如果此项设置为 true,那么 Service 将会默认被系统启动,不设置默认此项为 false
 android:exported:表示该服务是否能够被其他应用程序所控制或连接,不设置默认此项为 false

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/350297
推荐阅读
相关标签
  

闽ICP备14008679号