【Android开发-26】Android中服务Service详细讲解

1,service的生命周期

Android中的Service,其生命周期相较Activity来说更为简洁。它也有着自己的生命周期函数,系统会在特定的时刻调用对应的Service生命周期函数。

具体来说,Service的生命周期包含以下几个方法:

onCreate():这个方法在Service被创建时调用,只会在整个Service的生命周期中被调用一次,可以在这里进行一些初始化操作。
onStartCommand():此方法在Service被启动时调用。
onDestroy():当Service被销毁时调用,用于执行清理工作。
此外,我们还可以通过一些手动调用的方法来管理Service的生命周期,例如startService()、stopService()和bindService()。当我们手动调用startService()后,系统会自动依次调用onCreate()和onStartCommand()这两个方法;类似地,如果我们手动调用stopService(),则系统会自动调用onDestroy()方法。

需要注意的是,服务的生命周期比Activity的生命周期要简单得多,但是密切关注如何创建和销毁服务反而更加重要,因为服务可以在用户未意识到的情况下运行于后台。

2,service的启动和销毁

在Android中,Service的创建和销毁可以通过以下代码实现:

2.1创建Service:

public class MyService extends Service {@Overridepublic void onCreate() {super.onCreate();// 在这里进行初始化操作}@Overridepublic int onStartCommand(Intent intent, int flags, int startId) {// 在这里执行耗时操作return super.onStartCommand(intent, flags, startId);}@Overridepublic void onDestroy() {super.onDestroy();// 在这里进行清理工作}
}

2.2启动Service:

Intent intent = new Intent(this, MyService.class);
startService(intent);

2.3停止Service:

stopService(new Intent(this, MyService.class));

2.4绑定Service:

Intent intent = new Intent(this, MyService.class);
bindService(intent, serviceConnection, BIND_AUTO_CREATE);

2.5解绑Service:

unbindService(serviceConnection);

其中,serviceConnection是一个实现了ServiceConnection接口的对象,用于处理服务连接和断开连接时的操作。

2.6在Android中,Service的注册通常需要在应用程序的清单文件(AndroidManifest.xml)中进行。具体来说,你需要在该文件中添加一个元素,如下所示:

<service android:name=".MyService" />

其中,“MyService”需要替换为你自定义的Service类名。

2.7service的启动和停止代码例子:
在Android中,可以通过Button来启动和停止Service。具体实现方法如下:

在布局文件中添加一个Button控件:

<Buttonandroid:id="@+id/button_start_stop"android:layout_width="wrap_content"android:layout_height="wrap_content"android:text="Start/Stop Service" />

在Activity中获取Button控件的引用,并为其设置点击事件监听器:

Button buttonStartStop = findViewById(R.id.button_start_stop);
buttonStartStop.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {// 判断Service是否正在运行,如果正在运行则停止,否则启动if (isServiceRunning()) {stopService(new Intent(MainActivity.this, MyService.class));buttonStartStop.setText("Start Service");} else {startService(new Intent(MainActivity.this, MyService.class));buttonStartStop.setText("Stop Service");}}
});

其中,isServiceRunning()方法用于判断Service是否正在运行,可以根据实际情况自行实现。例如:

private boolean isServiceRunning() {ActivityManager manager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);for (ActivityManager.RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)) {if (MyService.class.getName().equals(service.service.getClassName())) {return true;}}return false;
}

3,使用bindservice方式和activity通讯

在Android中,使用bindService()方法可以将一个Activity与一个Service进行绑定,从而实现两者之间的通信。下面是一个简单的示例:

首先,创建一个Service类,继承自Service,并实现Binder接口:

import android.app.Service;
import android.content.Intent;
import android.os.Binder;
import android.os.IBinder;
import android.util.Log;public class MyService extends Service {private final IBinder mBinder = new LocalBinder();public class LocalBinder extends Binder {MyService getService() {return MyService.this;}}@Overridepublic IBinder onBind(Intent intent) {return mBinder;}public void performTask() {Log.d("MyService", "Performing task...");}
}

在Activity中,使用bindService()方法将Activity与Service进行绑定,并通过ServiceConnection监听服务连接状态:

import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.Bundle;
import android.os.IBinder;
import androidx.appcompat.app.AppCompatActivity;public class MainActivity extends AppCompatActivity {private MyService myService;private boolean isBound = false;private ServiceConnection connection = new ServiceConnection() {@Overridepublic void onServiceConnected(ComponentName className, IBinder service) {MyService.LocalBinder binder = (MyService.LocalBinder) service;myService = binder.getService();isBound = true;}@Overridepublic void onServiceDisconnected(ComponentName arg0) {isBound = false;}};@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);Intent intent = new Intent(this, MyService.class);bindService(intent, connection, Context.BIND_AUTO_CREATE);}@Overrideprotected void onDestroy() {super.onDestroy();if (isBound) {unbindService(connection);isBound = false;}}
}

在需要的时候,可以通过MyService实例调用performTask()方法来执行任务:

myService.performTask();

4,前台服务

在Android中,前台服务是一种在后台运行的服务,但会显示一个通知。以下是一个简单的前台服务的参考代码:

首先,创建一个继承自Service的类,并实现onCreate()和onDestroy()方法。在onCreate()方法中,调用startForeground()方法启动前台服务。

import android.app.Notification;
import android.app.PendingIntent;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import androidx.core.app.NotificationCompat;public class MyForegroundService extends Service {private static final int NOTIFICATION_ID = 1;@Overridepublic void onCreate() {super.onCreate();// 创建一个通知,用于显示在前台服务的通知栏Notification notification = new NotificationCompat.Builder(this, "channel_id").setContentTitle("前台服务").setContentText("这是一个前台服务").setSmallIcon(R.drawable.ic_notification).build();// 创建一个点击通知后打开的IntentIntent intent = new Intent(this, MainActivity.class);PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);// 将点击事件与通知关联起来notification.setContentIntent(pendingIntent);// 启动前台服务,并将通知传递给系统startForeground(NOTIFICATION_ID, notification);}@Overridepublic void onDestroy() {super.onDestroy();// 停止前台服务stopForeground(true);}@Overridepublic IBinder onBind(Intent intent) {return null;}
}

在AndroidManifest.xml文件中注册前台服务:

<service android:name=".MyForegroundService" />

在需要的时候,可以通过以下代码启动前台服务:

Intent intent = new Intent(this, MyForegroundService.class);
startService(intent);

在不需要前台服务时,可以通过以下代码停止前台服务:

Intent intent = new Intent(this, MyForegroundService.class);
stopService(intent);

5,Intentservice的用法

在Android中,IntentService是一个用于处理后台任务的类。它继承自Service类,并实现了IntentService接口。以下是一个简单的IntentService用法示例:

首先,创建一个继承自IntentService的类,例如MyIntentService:

import android.app.IntentService;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;public class MyIntentService extends IntentService {private static final String TAG = "MyIntentService";public MyIntentService() {super("MyIntentService");}@Overrideprotected void onHandleIntent(Intent intent) {// 在这里处理传入的IntentString action = intent.getAction();if (action != null) {switch (action) {case "com.example.ACTION_ONE":handleActionOne();break;case "com.example.ACTION_TWO":handleActionTwo();break;default:Log.w(TAG, "Unknown action: " + action);}}}private void handleActionOne() {// 处理动作一的逻辑}private void handleActionTwo() {// 处理动作二的逻辑}
}

在需要启动IntentService的地方,创建一个新的Intent对象,并设置其动作和数据,然后调用startService()方法启动服务:

import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;public class MainActivity extends AppCompatActivity {private Button startButton;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);startButton = findViewById(R.id.start_button);startButton.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {startMyIntentService();}});}private void startMyIntentService() {Intent intent = new Intent(this, MyIntentService.class);intent.setAction("com.example.ACTION_ONE");startService(intent);}
}

在这个示例中,当用户点击start_button按钮时,会启动一个名为MyIntentService的服务,并传递一个动作为com.example.ACTION_ONE的Intent。MyIntentService会根据传入的动作执行相应的处理逻辑。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/215584.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

[笔记] 使用 qemu/grub 模拟系统启动(单分区)

背景 最近在学习操作系统&#xff0c;需要从零开始搭建系统&#xff0c;由于教程中给的虚拟机搭建的方式感觉还是过于重量级&#xff0c;因此研究了一下通过 qemu 模拟器&#xff0c;配合 grub 完成启动系统的搭建。 qemu 介绍 qemu 是一款十分优秀的系统模拟器&#xff0c;…

Linux上进行Nacos安装

Nacos安装指南 仅供参考&#xff0c;若有错误&#xff0c;欢迎批评指正&#xff01; 后期会继续上传docker安装nacos的过程&#xff01; 1.Windows安装 开发阶段采用单机安装即可。 1.1.下载安装包 在Nacos的GitHub页面&#xff0c;提供有下载链接&#xff0c;可以下载编译好…

《C++新经典设计模式》之第7章 单例模式

《C新经典设计模式》之第7章 单例模式 单例模式.cpp 单例模式.cpp #include <iostream> #include <memory> #include <mutex> #include <vector> #include <atomic> using namespace std;// 懒汉式&#xff0c;未释放 namespace ns1 {class Gam…

手动搭建koa+ts项目框架(日志篇)

文章目录 前言一、安装koa-logger二、引入koa-logger并使用总结如有启发&#xff0c;可点赞收藏哟~ 前言 本文基于手动搭建koats项目框架&#xff08;路由篇&#xff09;新增日志记录 一、安装koa-logger npm i -S koa-onerror and npm i -D types/koa-logger二、引入koa-lo…

【每日一题】【12.11】1631.最小体力消耗路径

&#x1f525;博客主页&#xff1a; A_SHOWY&#x1f3a5;系列专栏&#xff1a;力扣刷题总结录 数据结构 云计算 数字图像处理 1631. 最小体力消耗路径https://leetcode.cn/problems/path-with-minimum-effort/这道题目的核心思路是&#xff1a;使用了二分查找和BFS &a…

PHP基础(2)

目录 一、PHP 数据类型 二、PHP 字符操作函数 strlen() str_word_count() strrev() strpos() str_replace() 一、PHP 数据类型 PHP 有八种基本数据类型和两种复合数据类型&#xff1a; 整型&#xff08;int&#xff09;&#xff1a;表示整数&#xff0c;可以是正数或负数&am…

线程Thread源代码思想学习1

1.启动线程代码 public class MultiThreadExample {public static void main(String[] args) {// 创建两个线程对象Thread thread1 new Thread(new Task());Thread thread2 new Thread(new Task());// 启动线程thread1.start();thread2.start();} }class Task implements Ru…

EXPLAIN 执行计划

有了慢查询语句后&#xff0c;就要对语句进行分析。一条查询语句在经过 MySQL 查询优化器的各种基于成本和规则的优化会后生成一个所谓的执行计划&#xff0c;这个执行计划展示了接下来具体执行查询的方式&#xff0c;比如多表连接的顺序是什么&#xff0c;对于每个表采用什么访…

记录 DevEco 开发 HarmonyOS 应用开发问题记录 【持续更新】

HarmonyOS 应用开发问题记录 HarmonyOS 应用开发问题记录一、预览器无法成功运行?如何定位预览器无法编译问题? 开发遇到的问题 HarmonyOS 应用开发问题记录 一、预览器无法成功运行? 大家看到这个是不是很头疼? 网上能看到许多方案,基本都是关闭一个配置 但是他们并…

InitializingBean初始化--Spring容器管理

目录 InitializingBean--自动执行一些初始化操作spring初始化bean有两种方式&#xff1a;1.优点2.缺点2.PostConstruct 注解2.举例使用InitializingBean接口 和PostConstruct3.初始化交给容器管理4.与main入口函数有什么区别5.在 Spring 中&#xff0c;有两种主要的初始化 bean…

【Java SE】带你识别什么叫做异常!!!

&#x1f339;&#x1f339;&#x1f339;个人主页&#x1f339;&#x1f339;&#x1f339; 【&#x1f339;&#x1f339;&#x1f339;Java SE 专栏&#x1f339;&#x1f339;&#x1f339;】 &#x1f339;&#x1f339;&#x1f339;上一篇文章&#xff1a;【Java SE】带…

Android获取Wifi网关

公司有这样一个应用场景&#xff1a;有一台球机设备&#xff0c;是Android系统的&#xff0c;它不像手机&#xff0c;它没有触摸屏幕&#xff0c;所以我们对球机的操作很不方便&#xff0c;于是我们搞这样一个设置&#xff1a;点击球机电源键5次分享出一个热点&#xff0c;然后…

【JVM从入门到实战】(一) 字节码文件

一、什么是JVM JVM 全称是 Java Virtual Machine&#xff0c;中文译名 Java虚拟机。 JVM 本质上是一个运行在计算机上的程序&#xff0c;他的职责是运行Java字节码文件。 二、JVM的功能 解释和运行 对字节码文件中的指令&#xff0c;实时的解释成机器码&#xff0c;让计算机…

C++类模板不是一开始就创建的,而是调用时生成

类模板中的成员函数和普通类中成员函数创建时机有区别的&#xff1a; 普通类中的成员函数一开始就可以创建模板类中的成员函数调用的时候才可以创建 总结;类模板中的成员函数并不是一开始就创建的&#xff0c;再调用时才去创建 #include<iostream> using namespace st…

微信小程序:模态框(弹窗)的实现

效果 wxml <!--新增&#xff08;点击按钮&#xff09;--> <image classimg src"{{add}}" bindtapadd_mode></image> <!-- 弹窗 --> <view class"modal" wx:if"{{showModal}}"><view class"modal-conten…

Vue中$props、$attrs和$listeners的使用详解

文章目录 透传属性如何禁止“透传属性和事件”多根节点设置透传访问“透传属性和事件” $props、$attrs和$listeners的使用详解 透传属性 透传属性和事件并没有在子组件中用props和emits声明透传属性和事件最常见的如click和class、id、style当子组件只有一个根元素时&#xf…

jOOQ指南中使用的数据库

jOOQ指南中使用的数据库 本指南中使用的数据库将在本节中进行总结和创建 使用Oracle方言来创建 # 创建语言 CREATE TABLE language (id NUMBER(7) NOT NULL PRIMARY KEY,cd CHAR(2) NOT NULL,description VARCHAR2(50) );# 创建作者 CREATE TABLE author (id NUMBER(7) NOT …

mysql:需要准确存储的带小数的数据,要使用DECIMAL类型

需要准确存储的带小数的数据&#xff0c;要使用DECIMAL&#xff0c;特别是涉及金钱类的业务。而不要使用FLOAT或者DOUBLE。 因为DECIMAL是准确值&#xff0c;不会损失精度。 而FLOAT或者DOUBLE是近似值&#xff0c;会损失精度。 https://dev.mysql.com/doc/refman/8.2/en/fixe…

差生文具多系列之最好看的编程字体

&#x1f4e2; 声明&#xff1a; &#x1f344; 大家好&#xff0c;我是风筝 &#x1f30d; 作者主页&#xff1a;【古时的风筝CSDN主页】。 ⚠️ 本文目的为个人学习记录及知识分享。如果有什么不正确、不严谨的地方请及时指正&#xff0c;不胜感激。 直达博主&#xff1a;「…

数据结构 | Floyd

参考博文&#xff1a; floyd算法 弗洛伊德算法 多源最短路径算法_弗洛伊德算法例题-CSDN博客