Android安卓进程保活(二)设置前台Service

举报
第三女神程忆难 发表于 2021/03/26 00:25:08 2021/03/26
【摘要】 Android进程保活·设置前台Service,提升App进程优先级 Android进程 此文章代码Github上有提交:https://github.com/NorthernBrain/processKeep_Service/tree/master 其它文章 Android安卓进程保活(一)1像素且透明Activity Android安卓进程保...

Android进程保活·设置前台Service,提升App进程优先级

Android进程


此文章代码Github上有提交:https://github.com/NorthernBrain/processKeep_Service/tree/master

其它文章

Android安卓进程保活(一)1像素且透明Activity
Android安卓进程保活(二)设置前台Service
Android安卓进程保活(三)双进程拉活(Java层)


  1. 前台进程 (Foreground process)
  2. 可见进程 (Visible process)
  3. 服务进程 (Service process)
  4. 后台进程 (Background process)
  5. 空进程 (Empty process)

下面进行解释:


前台进程(Foreground process):
  • 托管用户正在交互的 Activity(已调用 Activity 的 onResume() 方法)
  • 托管某个 Service,后者绑定到用户正在交互的 Activity
  • 托管正在“前台”运行的 Service(服务已调用 startForeground())
  • 托管正执行一个生命周期回调的 Service(onCreate()、onStart() 或 onDestroy())
  • 托管正执行其 onReceive() 方法的 BroadcastReceiver



可见进程 (Visible process):
  • 托管不在前台、但仍对用户可见的 Activity(已调用其 onPause() 方法)。例如,如果前台 Activity 启动了一个对话框,允许在其后显示上一 Activity,则有可能会发生这种情况。
  • 托管绑定到可见(或前台)Activity 的 Service。

可见进程被视为是极其重要的进程,除非为了维持所有前台进程同时运行而必须终止,否则系统不会终止这些进程。


服务进程 (Service process):



后台进程 (Service process):



空进程 (Empty process):



进程优先级:



Android进程保活

1像素且透明Activity提升App进程优先级 通过设置前台Service提升App进程优先级 Java层的双进程拉活 JobScheduler实现 NDK双进程守护 使用账户同步拉活 workmanager实现

  • 红色部分是容易被回收的进程,属于android进程
  • 绿色部分是较难被回收的进程,属于android进程
  • 其他部分则不是android进程,也不会被系统回收,一般是ROM自带的app和服务才能拥有

在asdf这里插入图片描述

本篇文章介绍的是进程第二种方式:

  • 设置前台Service,提升App进程优先级
设置前台Service,提升App进程优先级:


首先创建ForegroundService.java继承自Service(android.app.Service):↓

这里要注意,不同的Android版本,所用的方式也就不同,并且不能显示通知栏,这里需要在onStartCommand中判断Android版本,选择不同的操作

public class ForegroundService extends Service { private static final int SERVICE_ID = 1; @Override public void onCreate() { super.onCreate(); Log.d("ForegroundServiceNew", "开启ForegroundService"); } @Override public void onDestroy() { super.onDestroy(); Log.d("ForegroundServiceNew", "销毁ForegroundService"); } @Override public IBinder onBind(Intent intent) { return null; } @RequiresApi(api = Build.VERSION_CODES.O) @Override public int onStartCommand(Intent intent, int flags, int startId) { //判断版本 if (Build.VERSION.SDK_INT < 18) {//Android4.3以下版本 //将Service设置为前台服务,可以取消通知栏消息 startForeground(SERVICE_ID, new Notification()); } else if (Build.VERSION.SDK_INT < 24) {//Android4.3 - 7.0之间 //将Service设置为前台服务,可以取消通知栏消息 startForeground(SERVICE_ID, new Notification()); startService(new Intent(this, InnerService.class)); } else {//Android 8.0以上 NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE); if (manager != null) { NotificationChannel channel = new NotificationChannel("channel","name",NotificationManager.IMPORTANCE_NONE); manager.createNotificationChannel(channel); NotificationCompat.Builder builder = new NotificationCompat.Builder(this,"channel"); //将Service设置为前台服务,Android 8.0 App启动不会弹出通知栏消息,退出后台会弹出通知消息 //Android9.0启动时候会立刻弹出通知栏消息 startForeground(SERVICE_ID,new Notification()); } } return START_STICKY; } public static class InnerService extends Service { @Override public IBinder onBind(Intent intent) { return null; } @Override public int onStartCommand(Intent intent, int flags, int startId) { startForeground(SERVICE_ID, new Notification()); stopForeground(true);//移除通知栏消息 stopSelf(); return super.onStartCommand(intent, flags, startId); } }

}


  
 
  • 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
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71

<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>

  
 
  • 1

public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //设置前台Service,提升App进程优先级 startService(new Intent(this,ForegroundService.class)); }
}



  
 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

文章来源: blog.csdn.net,作者:第三女神程忆难,版权归原作者所有,如需转载,请联系作者。

原文链接:blog.csdn.net/qq_40881680/article/details/85134275

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。