【android】结合Google开发文档讲解已废弃的-IntentService
2021/12/25 23:08:46
本文主要是介绍【android】结合Google开发文档讲解已废弃的-IntentService,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
阅读前若是还未清楚Service服务可以看看这篇文章
第一行代码结合google文档的Service服务解析
废弃了,但之前是咋用来着
在阅读源码的时候发现这个IntentService
怎么废弃了呢?
The Android framework also provides the IntentService subclass of Service that uses a worker thread to handle all of the start requests, one at a time. Using this class is not recommended for new apps as it will not work well starting with Android 8 Oreo, due to the introduction of Background execution limits. Moreover, it’s deprecated starting with Android 11.
官网对此的解释是后台执行的限制导致在11版本的时候废弃了,那么,他到底是怎么用呢?我还没开始怎么就结束了,比龙卷风还快~
诞生,是为了补短板!
Service 一般是默认是在主线程进行的,但是很多东西是需要新开一个线程进行操作的。线程完成它的任务后就得改变,这时
stopSelf
和stopService
就发挥功效,但是忘记了呢?!所以IntentService就出现!
省事,省时
其中的onHandleIntent
方法就是为了实现不用在多构造一个线程然后开开关关的,很麻烦。反正这个对象就已经继承了Service。直接用就好!
我写了一个简单的对象,看看试试
package com.chris.servicepractice; import android.app.IntentService; import android.content.Intent; import android.util.Log; import androidx.annotation.Nullable; /** * 这个IntentService虽然废弃,但是它的出现主要是避免线程的冲突, * 有些时候在使用Service的时候启动一个new Thread ,到头没stop掉就会持续占据,浪费资源 */ public class MyIntentService extends IntentService { public MyIntentService(String name) { super(name); } @Override protected void onHandleIntent(@Nullable Intent intent) { //这里自动启动一个线程进行操作,不会影响到主线程 Log.d("MyIntentService","Thread String :" + Thread.currentThread().getId());//打印线程id就会发现和主线程是不一样的。 } @Override public void onCreate() { super.onCreate(); } }
用法和Service
一样得Start,bind,unbind,stop
官方挖坑
You can use JobIntentService as a replacement for IntentService that is compatible with newer versions of Android.
它说让我们去用JobIntentService
去进行替代,但是ta也废弃了~
至少在现在的时间2021-12-25,的确如此!
我可没忽悠,大家伙可以自己去读读官方文档
https://developer.android.google.cn/guide/components/services?hl=en#Lifecycle
这篇关于【android】结合Google开发文档讲解已废弃的-IntentService的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-20go-zero 框架的 RPC 服务 启动start和停止 底层是怎么实现的?-icode9专业技术文章分享
- 2024-12-19Go-Zero 框架的 RPC 服务启动和停止的基本机制和过程是怎么实现的?-icode9专业技术文章分享
- 2024-12-18怎么在golang中使用gRPC测试mock数据?-icode9专业技术文章分享
- 2024-12-15掌握PageRank算法核心!你离Google优化高手只差一步!
- 2024-12-15GORM 中的标签 gorm:"index"是什么?-icode9专业技术文章分享
- 2024-12-11怎么在 Go 语言中获取 Open vSwitch (OVS) 的桥接信息(Bridge)?-icode9专业技术文章分享
- 2024-12-11怎么用Go 语言的库来与 Open vSwitch 进行交互?-icode9专业技术文章分享
- 2024-12-11怎么在 go-zero 项目中发送阿里云短信?-icode9专业技术文章分享
- 2024-12-11怎么使用阿里云 Go SDK (alibaba-cloud-sdk-go) 发送短信?-icode9专业技术文章分享
- 2024-12-10搭建个人博客网站之一、使用hugo创建个人博客网站