当前位置:   article > 正文

Android后台服务_android 后台服务

android 后台服务

目录

一、什么是服务

二、服务的基础使用

2、启动和停止服务

tip:onCreate()和onStartCommand()的区别

3、服务与活动的通信

4、服务的生命周期

5.前台服务


一、什么是服务


        服务(Service)是 Android 中实现程序后台运行的解决方案,它非常适合用于去执行那些不需要和用户交互而且还要求长期运行的任务。服务的运行不依赖于任何用户界面,即使当程序被切换到后台,或者用户打开了另外一个应用程序,服务仍然能够保持正常运行。

        不过需要注意的是,服务并不是运行在一个独立的进程当中的,而是依赖于创建服务时所在的应用程序进程。当某个应用程序进程被杀掉时,所有依赖于该进程的服务也会停止运行。

        另外,服务并不会自动开启线程,所有的代码都是默认运行在主线程当中的。也就是说,我们需要在服务的内部手动创建子线程,并在这里执行具体的任务,否则就有可能出现主线程被阻塞住的情况。

二、服务的基础使用

1、定义一个类继承自Service

右击自建的项目->New->Service->Service

  1. public class MyService extends Service {
  2. @Override
  3. public IBinder onBind(Intent intent) {
  4. return null;
  5. }
  6. // onCreate()方法会在服务创建的时候调用
  7. @Override
  8. public void onCreate() {
  9. super.onCreate();
  10. Log.d("MyService", "onCreate executed");
  11. }
  12. // onStartCommand()方法会在每次服务启动的时候调用
  13. @Override
  14. public int onStartCommand(Intent intent, int flags, int startId) {
  15. Log.d("MyService", "onStartCommand executed");
  16. return super.onStartCommand(intent, flags, startId);
  17. }
  18. // onDestroy()方法会在服务销毁的时候 调用
  19. @Override
  20. public void onDestroy() {
  21. super.onDestroy();
  22. Log.d("MyService", "onDestroy executed");
  23. }
  24. }

android会自动在AndroidManifast.xml中声明

  1. <service
  2. android:name=".MyService"
  3. android:enabled="true"
  4. android:exported="true">
  5. </service>

这样,一个服务就定义好了

2、启动和停止服务

        代码的主要操作如下,细节可根据自己的代码需求自己编写。

  1. Intent startIntent = new Intent(this, MyService.class);
  2. startService(startIntent); // 启动服务
  3. Intent stopIntent = new Intent(this, MyService.class);
  4. stopService(stopIntent); // 停止服务
  5. // 注意:此处没有与活动绑定,如果调用startService()之后,没有调用stopService(),服务就会一直处于运行状态;
  6. // 想要服务自己停止,只需要在 MyService 的任何一个位置调用 stopSelf() 方法就能让这个服务停止下来了

tip:onCreate()和onStartCommand()的区别

        onCreate()方法是在服务第一次创建的时候调用的,而 onStartCommand()方法则在每次启动服务的时候都会调用。例如第一次点击 Start Service 按钮,服务此时还未创建过,所以两个方法都会执行,之后如果你再连续多点击几次 Start Service 按钮,你就会发现只有 onStartCommand()方法可以得到执行了。
 

3、服务与活动的通信

        服务与活动进行通信依靠的是binder。

service端

  1. //在service中定义一个继承Binder的类,自己定义业务相关的方法,并在onBind方法中返回一个该类的实例
  2. public class MyService extends Service {
  3. public MyService() {
  4. }
  5. private DownloadBinder mBinder = new DownloadBinder();
  6. class DownloadBinder extends Binder {
  7. public void startDownload() {
  8. Log.d("MyService", "startDownload executed");
  9. }
  10. public int getProgress() {
  11. Log.d("MyService", "getProgress executed");
  12. return 0;
  13. }
  14. }
  15. @Override
  16. public IBinder onBind(Intent intent) {
  17. return mBinder;
  18. }
  19. @Override
  20. public void onCreate() {
  21. super.onCreate();
  22. Log.d("MyService", "onCreate executed");
  23. }
  24. @Override
  25. public int onStartCommand(Intent intent, int flags, int startId) {
  26. Log.d("MyService", "onStartCommand executed");
  27. return super.onStartCommand(intent, flags, startId);
  28. }
  29. @Override
  30. public void onDestroy() {
  31. super.onDestroy();
  32. Log.d("MyService", "onDestroy executed");
  33. }
  34. }

Activity端

  1. public class MainActivity extends AppCompatActivity implements View.OnClickListener{
  2. //定义Binder
  3. private MyService.DownloadBinder downloadBinder;
  4. //定义ServiceConnection
  5. // 这里重写了 onServiceConnected()方法和 onServiceDisconnected()方法, 前者是在操作者连接一个服务成功时被调用,而后者是在服务崩溃或被杀死导致的连接中断时被调用,而如果我们自己解除绑定时则不会被调用。在 onServiceConnected()方法中,我们又通过向下转型得到了 DownloadBinder 的实例,我们可以通过这个实例来调用 DownloadBinder 中的任何 public 方法,即实现了指挥服务干什么,服务就去干什么的功能。 需要注意的是,与服务绑定是一个异步的过程,也就是说,在这一刻我们绑定服务,下一刻我们去操作binder对象,也许它还为null,这就容易引起空指针异常,正确的做法是把这些操作放到绑定成功之后,确保万无一失。
  6. private ServiceConnection connection = new ServiceConnection() {
  7. @Override
  8. public void onServiceDisconnected(ComponentName name) {
  9. }
  10. @Override
  11. public void onServiceConnected(ComponentName name, IBinder service) {
  12. downloadBinder = (MyService.DownloadBinder) service;
  13. //正确做法如下
  14. downloadBinder.startDownload();
  15. downloadBinder.getProgress();
  16. }
  17. };
  18. @Override
  19. protected void onCreate(Bundle savedInstanceState) {
  20. super.onCreate(savedInstanceState);
  21. setContentView(R.layout.activity_main);
  22. Button startService = (Button) findViewById(R.id.start_service);
  23. Button stopService = (Button) findViewById(R.id.stop_service);
  24. startService.setOnClickListener(this);
  25. stopService.setOnClickListener(this);
  26. Button bindService = (Button) findViewById(R.id.bind_service);
  27. Button unbindService = (Button) findViewById(R.id.unbind_service);
  28. bindService.setOnClickListener(this);
  29. unbindService.setOnClickListener(this);
  30. Button startIntentService = (Button) findViewById(R.id.start_intent_service);
  31. startIntentService.setOnClickListener(this);
  32. }
  33. @Override
  34. public void onClick(View v) {
  35. switch (v.getId()) {
  36. case R.id.start_service:
  37. Intent startIntent = new Intent(this, MyService.class);
  38. startService(startIntent); // 启动服务
  39. break;
  40. case R.id.stop_service:
  41. Intent stopIntent = new Intent(this, MyService.class);
  42. stopService(stopIntent); // 停止服务
  43. break;
  44. case R.id.bind_service:
  45. Intent bindIntent = new Intent(this, MyService.class);
  46. bindService(bindIntent, connection, BIND_AUTO_CREATE); // 绑定服务, 传入 BIND_AUTO_CREATE 表示在活动和服务进行绑定后自动创建服务。这会使得 MyService 中的 onCreate()方法得到执行,但 onStartCommand()方法不会执行。如果是第一次绑定,那么 onCreate方法和onBind方法会被调用,然后服务进入运行阶段,如果再次点击绑定按钮,onCreate和onBinder并不会再次被调用,这个过程中它们仅被调用一次,而onServiceConnected()则会被调用。之后如果其他客服端再次调用绑定方法,系统不会创建新的Sevice实例,也不会再调用onBind()方法,只会直接把IBinder对象传递给其他后来增加的客户端。
  47. break;
  48. case R.id.unbind_service:
  49. unbindService(connection); // 解绑服务
  50. break;
  51. case R.id.start_intent_service:
  52. // 打印主线程的id
  53. Log.d("MainActivity", "Thread id is " + Thread.currentThread(). getId());
  54. Intent intentService = new Intent(this, MyIntentService.class);
  55. startService(intentService);
  56. break;
  57. default:
  58. break;
  59. }
  60. }
  61. }
  62. // 需要注意的是,在连接中断状态再去做解除绑定操作会引起一个异常,在MainActivity销毁之前没有进行解除绑定也会导致后台出现异常信息
  63. 解决方法:
  64. // 定义一个标记
  65. private boolean binded;
  66. @Override
  67. public void onServiceConnected(ComponentName name, IBinder service) {
  68. // 绑定成功时给标记赋值
  69. binded = true;
  70. }
  71. //封装后的解除绑定的方法
  72. public void unbind(View view) {
  73. unbindService();
  74. }
  75. // 在Activity销毁之前进行解除绑定
  76. @Override
  77. protected void onDestroy() {
  78. super.onDestroy();
  79. unbindService();
  80. }
  81. // 解除绑定时先判断连接状态
  82. private void unbindService() {
  83. if (binded) {
  84. unbindService(conn);
  85. binded = false;
  86. }
  87. }

4、服务的生命周期


        一旦在项目的任何位置调用了 Context 的 startService()方法,相应的服务就会启动起来, 并回调 onStartCommand()方法。如果这个服务之前还没有创建过,onCreate()方法会先于 onStartCommand()方法执行。服务启动了之后会一直保持运行状态,直到 stopService()或 stopSelf()方法被调用。注意虽然每调用一次 startService()方法,onStartCommand()就会执行一次,但实际上每个服务都只会存在一个实例。所以不管你调用了多少次 startService()方法, 只需调用一次 stopService()或 stopSelf()方法,服务就会停止下来了。 另外,还可以调用 Context 的 bindService()来获取一个服务的持久连接,这时就会回调服务中的 onBind()方法。类似地,如果这个服务之前还没有创建过,onCreate()方法会先于 onBind()方法执行。之后,调用方可以获取到 onBind()方法里返回的 IBinder 对象的实例,这样就能自由地和服务进行通信了。只要调用方和服务之间的连接没有断开,服务就会一直保持运行状态。

        当调用了 startService()方法后,又去调用 stopService()方法,这时服务中的 onDestroy() 方法就会执行,表示服务已经销毁了。类似地,当调用了 bindService()方法后,又去调用 unbindService()方法, onDestroy()方法也会执行,这两种情况都很好理解。但是需要注意, 我们是完全有可能对一个服务既调用了 startService()方法,又调用了 bindService()方法的,这种情况下要同时调用 unbindService()和 stopService() 方法,onDestroy()方法才会执行。 因为使用bindService来绑定一个启动的Service,注意是已经启动的Service!!! 系统只是将Service的内部IBinder对象传递给Activity,并不会将Service的生命周期与Activity绑定,因此调用unBindService( )方法取消绑定时,Service也不会被销毁。
 

5.前台服务

  1. //在service的onCreate()方法里加入如下代码,则可以将一个服务提升为前台服务
  2. Intent intent = new Intent(this, MainActivity.class);
  3. PendingIntent pi = PendingIntent.getActivity(this, 0, intent, 0);
  4. Notification notification = new NotificationCompat.Builder(this)
  5. .setContentTitle("This is content title")
  6. .setContentText("This is content text")
  7. .setWhen(System.currentTimeMillis())
  8. .setSmallIcon(R.mipmap.ic_launcher)
  9. .setLargeIcon(BitmapFactory.decodeResource(getResources(), R.mipmap.ic_launcher))
  10. .setContentIntent(pi)
  11. .build();
  12. // 调用 startForeground()方法后就会让 MyService 变成一个前台服务,并在系统状态栏显示出来
  13. // 注意:startForeground()第一个参数必须大于0,否则无法在通知栏显示
  14. startForeground(1, notification);

IntentService的使用

IntentService的作用: 可以创建一个异步的、会自动停止的服务;

  1. public class MyIntentService extends IntentService {
  2. public MyIntentService() {
  3. super("MyIntentService"); // 调用父类的有参构造函数
  4. }
  5. //必须重写onHandleIntent(),这个方法中可以去处理一些具体的逻辑,而且不用担心 ANR 的问题,因为这个方法已经是在子线程中运行的。
  6. @Override
  7. protected void onHandleIntent(Intent intent) {
  8. // 打印当前线程的id
  9. Log.d("MyIntentService", "Thread id is " + Thread.currentThread(). getId());
  10. }
  11. @Override
  12. public void onDestroy() {
  13. super.onDestroy();
  14. Log.d("MyIntentService", "onDestroy executed");
  15. }
  16. }
  17. //启动该服务,同样是创建Intent,调用startService()方法
  18. Intent intentService = new Intent(this, MyIntentService.class);
  19. startService(intentService);

以上就是今天的全部内容!

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

闽ICP备14008679号