文章目录

  • 1、服务简介
  • 2、服务的生命周期
    • 1) Service 的 启动 停止
    • 2)、服务的生命周期的方法
  • 3、使用startService 启动后服务的生命周期
    • 1)、文件结构
    • 2) activity_main.xml 文件
    • 3)、myService 自定义服务文件
    • 4)、MainActivity 文件
    • 5)、AndroidManifest.xml 文件
    • 6)、打印的相关log
  • 5、使用bindService 启动后服务的生命周期
    • 1) 文件结构
    • 2) MyService 文件
  • 3、ManiActivity 文件
    • 4、log 打印

1、服务简介

在Android 中,服务时很重要的组件,它运行在系统之中,是不可见的,但它在系统的后台运行,为系统运行提供支持。
例如,一个服务可以在用户做其他事情的时候在后台播放音乐,或者是从网略上下载数据,把结果传递给其他组件使用。

2、服务的生命周期

Service 运行于应用程序进程的主线程里,因此它不会阻塞其他组件和用户界面。Service 有自己的生命周期,但Service 是不能够自己启动的。

1) Service 的 启动 停止

Services 启动或停止有一下三种方法:
1)调用 context.startService() 启动,调用 context.stopService() 结束
2)调用service.stopSelf() 或 service.stopSelfResult()来自己停止
3)调用 context.bindService()方法建立,调用 context.unbindService()关闭
每种启动和结束 是 配对的,不能交叉使用:
1)使用 startService()启动,就要使用 stopService() 结束
2)可以自己控制自己结束
3)start Service bindService 的区别:
(1) startService 调用者和服务没有关联,即使调用者结束了,服务仍然可以运行。
(2)bindService 调用者和服务绑在一起,调用者一但退出,服务也就终止。
(3)无论调用了多少次 startService()方法,但是只要有一次调用stopService()方法,服务就会停止。
(4)多个客户端可以绑定一个服务,如果此时服务还没有加载,bindService() 会先加载它。

(5)start Service bindService 并不是完全分离的,用户使用starService 里也可以使用bindService

2)、服务的生命周期的方法

(1) void onCreate() //当Service 创建时执行,不能直接调用
(2)void onStart(Intent intent) //当onCreate()之后,开始启动Servcie
(3)void onBind(Intent intent) //在onCreate 之后,绑定服务到组件
(4)void onUnbind(Intent intent) //在onDestory()之前,先解除绑定,再退出
(5)void onDestroy() //service 被销毁的时候执行

3、使用startService 启动后服务的生命周期

定义了两个按钮,一个是开启服务,一个是关闭服务

1)、文件结构

2) activity_main.xml 文件

定义两个按钮

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:app="http://schemas.android.com/apk/res-auto"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"tools:context="com.example.lum.myservice.MainActivity"><Buttonandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:id="@+id/startService_id"android:text="开启服务" /><Buttonandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:id="@+id/stopService_id"android:text="关闭服务"/></LinearLayout>
3)、myService 自定义服务文件
package com.example.lum.myservice;import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.support.annotation.Nullable;
import android.util.Log;/*** Created by lum on 2018/11/25.*/public class MyService extends Service {private  String  TAG  = "MyService: ";public  void onCreate() {//创建服务Log.i(TAG,"创建服务   onCreate ");super.onCreate();}public void onStart(Intent intent,int startId) {//服务启动Log.i(TAG,"服务启动   onStart ");super.onStart(intent, startId);}@Nullable@Overridepublic IBinder onBind(Intent intent) {//服务绑定Log.i(TAG,"服务绑定   onBind ");return null;}public  void onDestroy() {//服务销毁Log.i(TAG,"服务启动   onDestroy ");super.onDestroy();}public boolean onUnbind(Intent intent) {//解除服务Log.i(TAG,"服务解绑   onUnbind ");return   super.onUnbind(intent);}}
4)、MainActivity 文件

开启 关闭服务

package com.example.lum.myservice;import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;public class MainActivity extends AppCompatActivity implements View.OnClickListener {private String  TAG = "MainActivity: ";private Button buttonStart,buttonStop;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);buttonStart = (Button) findViewById(R.id.startService_id);buttonStop = (Button) findViewById(R.id.stopService_id);buttonStart.setOnClickListener(this);buttonStop.setOnClickListener(this);}@Overridepublic void onClick(View v) {Intent myService = new Intent(this,MyService.class);switch (v.getId()) {case R.id.startService_id:Log.i(TAG,"开启服务");myService.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);// 设置新的TASK 方式//以startService 方法启动该服务startService(myService);break;case R.id.stopService_id:Log.i(TAG,"关闭服务");//以stop Service 方法 关闭服务stopService(myService);break;default:break;}}
}
5)、AndroidManifest.xml 文件

对自己服务进行注册

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"package="com.example.lum.myservice"><applicationandroid:allowBackup="true"android:icon="@mipmap/ic_launcher"android:label="@string/app_name"android:roundIcon="@mipmap/ic_launcher_round"android:supportsRtl="true"android:theme="@style/AppTheme"><activity android:name=".MainActivity"><intent-filter><action android:name="android.intent.action.MAIN" /><category android:name="android.intent.category.LAUNCHER" /></intent-filter></activity><service android:name=".MyService"><intent-filter><action android:name="com.android.myAction"/></intent-filter></service></application></manifest>
6)、打印的相关log

5、使用bindService 启动后服务的生命周期

再 MyService 中重载 onBind(Intent intent) 和 onUnbind(Intent intent) 方法,打印日志,定义内部类MyBind(Binder 为进程间通信的一种实现方式),在onBind(Intent intent) 方法中返回MyBinder 类的实例。

1) 文件结构

其中 AndroidManifest.xml Activity_main.xml 文件 同上
差异化再 MyService 和 ManiAc’ti’vi’t’y 文件

2) MyService 文件
package com.example.lum.myservice;import android.app.Service;
import android.content.Intent;
import android.os.Binder;
import android.os.IBinder;
import android.support.annotation.Nullable;
import android.util.Log;/*** Created by lum on 2018/11/25.*/public class MyService extends Service {private  String  TAG  = "MyService: ";private int count; //计数private boolean flag;  //线程循环编辑private final  IBinder binder = new MyBinder();//Binder类,如果希望对象能被其他进程访问,必须实现 IBinder接口/** 因为是用绑定的方式开启的服务,所以在服务被创建后,* 执行与调用者之间的关系,* 关闭时先解除绑定,再销毁服务,* 定义的Binder是Activity 与 Service 之间的通信接口* */public  class  MyBinder extends Binder {//获取当前计数public int getCount() {return count;}}public  void onCreate() {//创建服务Log.i(TAG,"创建服务   onCreate ");//线程计数器累加flag = true;new Thread(new Runnable() {@Overridepublic void run() {while (flag) {try {Thread.sleep(1000);} catch (InterruptedException e) {e.printStackTrace();}count ++ ; //累计计数Log.i(TAG,"count: "  + count);}}}).start();super.onCreate();}public void onStart(Intent intent,int startId) {//服务启动Log.i(TAG,"服务启动   onStart ");super.onStart(intent, startId);}@Nullable@Overridepublic IBinder onBind(Intent intent) {//服务绑定Log.i(TAG,"服务绑定   onBind ");return binder;}public  void onDestroy() {//服务销毁Log.i(TAG,"服务关闭   onDestroy ");flag = false;  //控制线程的计数器累计super.onDestroy();}public boolean onUnbind(Intent intent) {//解除服务Log.i(TAG,"服务解绑   onUnbind ");return   super.onUnbind(intent);}}

3、ManiActivity 文件

package com.example.lum.myservice;import android.content.ComponentName;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.IBinder;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;public class MainActivity extends AppCompatActivity implements View.OnClickListener {private String  TAG = "MainActivity: ";private Button buttonStart,buttonStop;//服务链接接口,链接Service 与 Activityprivate ServiceConnection serviceConnection = new ServiceConnection() {@Overridepublic void onServiceConnected(ComponentName name, IBinder service) {//链接Log.i(TAG,"onServiceConnected");}@Overridepublic void onServiceDisconnected(ComponentName name) {//断开链接Log.i(TAG,"onServiceDisconnected");}};@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);buttonStart = (Button) findViewById(R.id.startService_id);buttonStop = (Button) findViewById(R.id.stopService_id);buttonStart.setOnClickListener(this);buttonStop.setOnClickListener(this);}@Overridepublic void onClick(View v) {Intent myService = new Intent(this,MyService.class);switch (v.getId()) {case R.id.startService_id:Log.i(TAG,"绑定服务");myService.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);// 设置新的TASK 方式//以bindService 方法启动该服务boolean f = bindService(myService,serviceConnection,BIND_AUTO_CREATE);if (f) {Log.i(TAG,"服务已经启动");}else {Log.i(TAG,"服务启动失败");}break;case R.id.stopService_id:Log.i(TAG,"解绑服务");//以unbind Service 方法 关闭服务unbindService(serviceConnection);break;default:break;}}
}
4、log 打印

(1)这里是采用 bindService(myService,serviceConnection,BIND_AUTO_CREATE); 来启动服务的,标记为自动建立。虽然是自动建立,但是仍然是,没有调用了startService
开启服务,所以不会出现 onStart()方法。

(2)绑定服务时,需要定义内部类ServiceConnect,用于链接Service 和 Activity ,并实现里面的方法。当绑定成功后会调用ServiceConnection中的回调函数,onServiceConnected(ComponentName name,IBinder service);

文章参考:
《Android 典型技术模块开发详解》

本人郑重声明,本博客所编文章、图片版权归权利人持有,本博只做学习交流分享所用,不做任何商业用途。访问者可將本博提供的內容或服务用于个人学习、研究或欣赏,不得用于商业使用。同時,访问者应遵守著作权法及其他相关法律的规定,不得侵犯相关权利人的合法权利;如果用于商业用途,须征得相关权利人的书面授权。若文章、图片的原作者不愿意在此展示內容,请及时通知在下,將及时予以刪除。

Service 服务详解 及自定义服务模板相关推荐

  1. java对接阿里云短信服务详解(验证码,推广短信,通知短信)

    前言 小前提: - java:springboot框架,maven版本管理. - 阿里云:有账号,已经进行实名认证. java对接阿里云短信服务详解(验证码,推广短信,通知短信) 前言 1. 登录阿里 ...

  2. 深入原生冰山安全体系,详解华为云安全服务如何构筑全栈安全

    摘要:如果把云安全比作"冰山",不仅要关注冰山上的"安全服务和特性",还要关注冰山下各种基础安全建设. 本文分享自华为云社区<深入原生冰山安全体系,详解华 ...

  3. 89-Spring Cloud 微服务详解

    Spring Cloud 微服务详解 微服务架构: 在说明该架构之前,再次的说明互联网应用架构演进(虽然之前说明过了) 随着互联网的发展,用户群体逐渐扩大,网站的流量成倍增长,常规的单体架构已无法满足 ...

  4. oracle如何启动和停止服务,CentOS启动和停止服务详解

    CentOS启动和停止服务详解 服务简介 Linux 系统服务是在Linux启 动时自动加载, 服务的添加.删除.自动运行及状态 CAMS 在安装过程中会自动添加相关的服务,例如: service c ...

  5. centos终止linux程序,CentOS启动和停止服务详解

    CAMS 在安装过程中, 1. 添加服务 添加服务的步骤为: (1) 将该服务的脚本文件拷入/etc/rc.d/init.d 文件夹下,例如: service camsd stop 停止 camsd ...

  6. Windows7 个人服务详解及优化

    Windows7 个人服务详解及优化! 这是我个人根据网上提供的服务优化说明来修改的([]号里就是我自己设定的),我是以安装了卡巴斯基和金山网镖的前提下关闭一些系统自带的防火墙和安全的服务,家庭电脑使 ...

  7. windowsXP服务详解

    XP服务详解 XP服务详解Alerter:当系统发生故障时向管理员发送错误警报,除非电脑处于局域网,而且配有网管管理员,一般不需要.(进程:services.exe) Application laye ...

  8. Windows XP服务详解

      Windows XP服务详解 微软的个人操作系统从Win98发展到WinXP,为什么突然变得那么消耗系统资源呢?以至于很多人都感觉WinXP只是高配置的电脑才能运行的操作系统,其实不然.WinXP ...

  9. android NSD服务详解

    android NSD服务详解 一.NSD的基础知识: NSD全称为: Network Service Discovery.翻译过来的意思就是发现服务器网络的意思.理解的说就是:发现服务器对应的网络信 ...

最新文章

  1. PyTorch 源码解读之分布式训练了解一下?
  2. SSH下的组合批量增加
  3. 广药谋定中国农民丰收节交易会-万祥军:谋定乡村振兴基金
  4. tensorboard使用_tensorboard查看训练曲线
  5. 大数据图数据库之MapReduce用于图计算
  6. 一个电子工程师的完美人生!
  7. VC 打开目录对话框
  8. Convert your single instance to 10g RAC by manual
  9. 如何用方正飞腾做出“凹”形文本框
  10. 灰度图像加性噪声污染和运动模糊图像复原
  11. 后台事务开发之简单示例
  12. CEikEdwin 助手
  13. 我对 相对论 提出了一个 修正,名为 “K氏修正”
  14. 液晶VGH、 VGL电路解析
  15. java正则判断银行卡号,验证银行卡号正则
  16. 管理部门使用计算机属于固定资产核算吗,固定资产核算管理内容
  17. RESTE MASTER和reset slave
  18. c语言笔记——黑马程序员上课笔记
  19. java 验证手机号码、电话号码(包括最新的电信、联通和移动号码) 1
  20. TX2 刷机 安装 jetpack 卡在determining IP adress问题

热门文章

  1. 光栅区域衍射级数和效率的规范
  2. 跑论文Unsupervised Question Answering by Cloze Translation的实验遇到的bug以及解决方法
  3. 京东爬虫——京东评论信息爬取及评论图片的下载
  4. springboot中的@Conditional注解
  5. ubuntu 安装软件(tar.gz / deb)
  6. Y9000p/y7000p/R7000p/R9000P(2021) ubuntu 18.04 MT7921 解决无wifi (联发科mt7921无线网卡)
  7. java小区门禁管理模块_JAVA门禁系统
  8. iebook超级精灵免费版的使用方法
  9. 2009 中国Saas转折元年
  10. android实现火箭升空清理内存