`

Android中Service与IntentService的使用比较

 
阅读更多
该博客来自网络——————>>
稍微翻译理一理,这里主要是说IntentServic

不知道大家有没有和我一样,以前做项目或者练习的时候一直都是用Service来处理后台耗时操作,却很少注意到还有个IntentService,前段时间准备面试的时候看到了一篇关于IntentService的解释,发现了它相对于Service来说有很多更加方便之处,今天在这里稍微来总结下我的心得。

首先IntentService是继承自Service的,那我们先看看Service的官方介绍,这里列出两点比较重要的地方:

 

 

1.A Service is not a separate process. The Service object itself does not imply it is running in its own process; unless otherwise specified, it runs in the same process as the application it is part of.

2.A Service is not a thread. It is not a means itself to do work off of the main thread (to avoid Application Not Responding errors).

稍微翻一下(英文水平一般)

1.Service不是一个单独的进程 ,它和应用程序在同一个进程中。

2.Service不是一个线程,所以我们应该避免在Service里面进行耗时的操作

关于第二点我想说下,不知道很多网上的文章都把耗时的操作直接放在Service的onStart方法中,而且没有强调这样会出现Application Not Responding!希望我的文章能帮大家认清这个误区(Service不是一个线程,不能直接处理耗时的操作)。

有人肯定会问,那么为什么我不直接用Thread而要用Service呢?关于这个,大家可以网上搜搜,这里不过多解释。有一点需要强调,如果有耗时操作在Service里,就必须开启一个单独的线程来处理!!!这点一定要铭记在心。

IntentService相对于Service来说,有几个非常有用的优点,首先我们看看官方文档的说明:

IntentService is a base class for Services that handle asynchronous requests (expressed as Intents) on demand. Clients send requests throughstartService(Intent) calls; the service is started as needed, handles each Intent in turn using a worker thread, and stops itself when it runs out of work.

This "work queue processor" pattern is commonly used to offload tasks from an application's main thread. The IntentService class exists to simplify this pattern and take care of the mechanics. To use it, extend IntentService and implement onHandleIntent(Intent). IntentService will receive the Intents, launch a worker thread, and stop the service as appropriate.

All requests are handled on a single worker thread -- they may take as long as necessary (and will not block the application's main loop), but only one request will be processed at a time.

e使用队列的方式将请求的Intent加入队列,然后开启一个worker thread(线程)来处理队列中的Intent,对于异步的startService请求,IntentService会处理完成一个之后再处理第二个,每一个请求都会在一个单独的worker thread中处理,不会阻塞应用程序的主线程,这里就给我们提供了一个思路,如果有耗时的操作与其在Service里面开启新线程还不如使用IntentService来处理耗时操作。下面给一个小例子:
 

 

1.Service:

 

  1. package com.zhf.service;
  2. import Android.app.Service;
  3. import Android.content.Intent;
  4. import Android.os.IBinder;
  5. public class MyService extends Service {
  6.  @Override
  7.  public void onCreate() {
  8.  super.onCreate();
  9. }
  10.  @Override
  11.  public void onStart(Intent intent, int startId) {
  12.  super.onStart(intent, startId);
  13.  //经测试,Service里面是不能进行耗时的操作的,必须要手动开启一个工作线程来处理耗时操作
  14. System.out.println("onStart");
  15.  try {
  16. Thread.sleep(20000);
  17. catch (InterruptedException e) {
  18. e.printStackTrace();
  19. }
  20. System.out.println("睡眠结束");
  21. }
  22.  @Override
  23.  public IBinder onBind(Intent intent) {
  24.  return null;
  25. }
  26. }

 

2.IntentService:

 

  1. package com.zhf.service;
  2. import Android.app.IntentService;
  3. import Android.content.Intent;
  4. public class MyIntentService extends IntentService {
  5.  public MyIntentService() {
  6.  super("yyyyyyyyyyy");
  7. }
  8.  @Override
  9.  protected void onHandleIntent(Intent intent) {
  10.  // 经测试,IntentService里面是可以进行耗时的操作的
  11.  //IntentService使用队列的方式将请求的Intent加入队列,然后开启一个worker thread(线程)来处理队列中的Intent
  12.  //对于异步的startService请求,IntentService会处理完成一个之后再处理第二个
  13. System.out.println("onStart");
  14.  try {
  15. Thread.sleep(20000);
  16. catch (InterruptedException e) {
  17. e.printStackTrace();
  18. }
  19. System.out.println("睡眠结束");
  20. }
  21. }

 

测试主程序:

 

  1. package com.zhf.service;
  2. import Android.app.Activity;
  3. import Android.content.Intent;
  4. import Android.os.Bundle;
  5. public class ServiceDemoActivity extends Activity {
  6.  /** Called when the activity is first created. */
  7.  @Override
  8.  public void onCreate(Bundle savedInstanceState) {
  9.  super.onCreate(savedInstanceState);
  10. setContentView(R.layout.main);
  11. startService(new Intent(this,MyService.class));//主界面阻塞,最终会出现Application not responding
  12.  //连续两次启动IntentService,会发现应用程序不会阻塞,而且最重的是第二次的请求会再第一个请求结束之后运行(这个证实了IntentService采用单独的线程每次只从队列中拿出一个请求进行处理)
  13. startService(new Intent(this,MyIntentService.class));
  14. startService(new Intent(this,MyIntentService.class));
  15. }
  16. }
分享到:
评论

相关推荐

    Android中IntentService的特征

    service中1需要手动开启子线程2服务开启之后会一直运行,需要手动调用stopService();或者stopSelf(); intentService是一种异步(子线程)、自动停止的服务,这个例子测试IntentService的特征

    android 中的服务Service intentService例子

    在Android开发中,服务(Service)是用于在后台执行长时间运行操作的重要组件,不与用户界面直接交互。本文将深入探讨“Service”和其子类“IntentService”的使用,结合提供的标签“源码”和“工具”,我们将侧重于...

    service和Intentservice示例

    在Android应用开发中,`Service`和`IntentService`是两个关键组件,它们用于在后台执行长时间运行的任务,不依赖于用户界面。本篇将详细阐述`Service`和`IntentService`的用法以及需要注意的要点。 首先,我们来...

    深入剖析Android系统中Service和IntentService的区别

    在实际开发中,当需要在后台进行一系列有序操作且不需要与客户端交互时,使用IntentService是一个理想的选择。 总结来说,Service是Android系统中用于后台运行任务的基础,但需要开发者手动处理线程和生命周期管理...

    详解Android中IntentService的使用方法

    在Android应用开发中,IntentService是一个非常重要的组件,它继承自Service类,专门用于执行后台的单线程任务,尤其适合处理那些可能阻塞主线程的操作,如网络请求、文件下载等。IntentService的设计旨在避免主线程...

    android service和intentService

    3. 在ServiceDemoActivity.java中都调用了两个service,调用service自行屏蔽调用IntentServiceServie,调用IntentServiceServie自行屏蔽调用service。 4. 仅仅是个例子,对比这个service和IntentServiceServie的区别...

    IntentService

    IntentService是Android系统中一种特殊的Service,它是Service的子类,设计用于在后台执行单一的任务,然后自动停止服务,不需要手动调用stopSelf()。IntentService的使用极大地简化了后台异步任务处理,并且保证了...

    IntentService学习Demo

    5. **IntentService与普通Service的区别** - 普通Service默认在主线程运行,需要开发者手动处理线程和任务调度;IntentService在工作线程中处理任务,避免了主线程阻塞。 - 普通Service需要开发者手动停止,而...

    Android—IntentService

    IntentService的使用既简单又高效,能够确保工作在安全的环境中,避免内存泄漏和线程安全问题。 在Android应用开发中,IntentService的主要特点和优势包括: 1. 单线程执行:IntentService内部使用了一个工作队列...

    Android中的IntentService简介.pdf

    IntentService是Android操作系统中一种特殊的Service子类,它主要用于处理那些需要后台运行的单个任务,比如网络请求、数据同步等。与普通的Service相比,IntentService具有更好的线程管理和任务调度机制,使得...

    android service 简单实例源代码

    在Android开发中,Service是四大组件之一,它在后台运行,不与用户界面直接交互,常用于执行长时间的任务,如播放音乐、网络通信等。本篇文章将深入解析"android service 简单实例源代码",帮助你理解如何在Android...

    Android中Service的作用与定义.pdf

    为避免这种情况,通常建议在Service中使用IntentService或HandlerThread来处理后台任务,确保操作在单独的工作线程中执行。 6. Service的启动与停止 - 启动服务:使用startService()启动Service,通过stopService...

    Android IntentService详解及使用实例

    Service不会专门启动一条单独的进程,Service与它所在应用位于同一个进程中;  Service也不是专门一条新线程,因此不应该在Service中直接处理耗时的任务;  二、IntentService特征 会创建独立的worker线程来...

    android Service 与Activity绑定

    - 尽量避免在主线程中进行耗时操作,使用IntentService或在Service中开启新的工作线程。 - 绑定Service时,确保在Activity的onDestroy()中解绑,防止内存泄漏。 - 如果只是需要在后台执行一次性任务,优先考虑...

    android service组件与记事本

    在这个描述中,可能是使用了标准Service,因为IntentService会自动处理工作线程并结束自身,而这里需要在用户退出时手动停止音乐播放。 创建一个Service通常涉及以下步骤: 1. 创建一个新的Service类,继承自`...

    IntentService实现,使用代码

    在【标题】"IntentService实现,使用代码"和【描述】"一个IntentService的简单使用"中,我们可以深入探讨IntentService的基本概念、优点、工作原理以及如何在实际项目中使用。 1. **IntentService基本概念** ...

    安卓 开启service每分钟执行一次任务 模拟定时 或者定时任务

    1)Service默认运行在主线程中,IntentService运行在一个新的线程中 2)Service需要主动调用stopSelf()或stopService()服务才可以停止,IntentService运行完后自动停止 使用IntentService需要注意2点: 1)构造函数中...

Global site tag (gtag.js) - Google Analytics