【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-11-15SendGrid 的 Go 客户端库怎么实现同时向多个邮箱发送邮件?-icode9专业技术文章分享
- 2024-11-15SendGrid 的 Go 客户端库怎么设置header 和 标签tag 呢?-icode9专业技术文章分享
- 2024-11-12Cargo deny安装指路
- 2024-11-02MongoDB项目实战:从入门到初级应用
- 2024-11-01随时随地一键转录,Google Cloud 新模型 Chirp 2 让语音识别更上一层楼
- 2024-10-25Google Cloud动手实验详解:如何在Cloud Run上开发无服务器应用
- 2024-10-24AI ?先驱齐聚 BAAI 2024,发布大规模语言、多模态、具身、生物计算以及 FlagOpen 2.0 等 AI 模型创新成果。
- 2024-10-20goland工具下,如修改一个项目的标准库SDK的版本-icode9专业技术文章分享
- 2024-10-17Go学习:初学者的简单教程
- 2024-10-17Go学习:新手入门完全指南