我是靠谱客的博主 俊秀身影,这篇文章主要介绍android 8.0对服务的限制,现在分享给大家,希望可以做个参考。

android 8.0以后 不再支持后台运行服务了,

所以如果想暂时的适配之前的工程

可以修改targetSdkVersion到26以下版本

复制代码
1
targetSdkVersion 25

如果想正儿八经的适配

可以通过启动前台服务来启动

前台服务依然不能依然不能做后台的事情

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
public static void startMyService(Context content, Intent intent) { // content.startService(intent); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { //android8.0以上通过startForegroundService启动service content.startForegroundService(intent); } else { content.startService(intent); } }

而且服务启动5s内 必须得调用

复制代码
1
startForeground

方法

我这边来一个简单的封装

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
@RequiresApi(api = Build.VERSION_CODES.O) private void createNotificationChannel(int i) { NotificationManager mNotificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); // 通知渠道的id String id = "my_channel_01"; // 用户可以看到的通知渠道的名字. CharSequence name = getString(R.string.app_name); // 用户可以看到的通知渠道的描述 String description = getString(R.string.app_desc); int importance = NotificationManager.IMPORTANCE_HIGH; NotificationChannel mChannel = null; if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) { mChannel = new NotificationChannel(id, name, importance); } // 配置通知渠道的属性 mChannel.setDescription(description); // 设置通知出现时的闪灯(如果 android 设备支持的话) mChannel.enableLights(true); mChannel.setLightColor(Color.RED); // 设置通知出现时的震动(如果 android 设备支持的话) mChannel.enableVibration(true); mChannel.setVibrationPattern(new long[]{100, 200, 300, 400, 500, 400, 300, 200, 400}); // 最后在notificationmanager中创建该通知渠道 // mNotificationManager.createNotificationChannel(mChannel); // 为该通知设置一个id int notifyID = 1; // 通知渠道的id String CHANNEL_ID = "my_channel_01"; // Create a notification and set the notification channel. String content = "前台通知内容"; Notification notification = new Notification.Builder(this) .setContentTitle(getResources().getString(R.string.app_name)).setContentText(content) .setSmallIcon(R.drawable.ic_launcher_foreground) .setChannelId(CHANNEL_ID) .build(); startForeground(1, notification); }

可以在service中的

复制代码
1
onStartCommand

中调用

复制代码
1
2
3
4
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { createNotificationChannel(i); }

后台服务的替代品暂时还没找到。有人说可以使用

复制代码
1
public class TestJobService extends JobService

但是又有人说这个JobService服务只能后台运行10分钟 那根本就不够用的

 

最后

以上就是俊秀身影最近收集整理的关于android 8.0对服务的限制的全部内容,更多相关android内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(70)

评论列表共有 0 条评论

立即
投稿
返回
顶部