- 前台进程 (Foreground process)
- 可见进程 (Visible process)
- 服务进程 (Service process)
- 后台进程 (Background process)
- 空进程 (Empty process)
下面进行解释:
- 托管用户正在交互的 Activity(已调用 Activity 的 onResume() 方法)
- 托管某个 Service,后者绑定到用户正在交互的 Activity
- 托管正在“前台”运行的 Service(服务已调用 startForeground())
- 托管正执行一个生命周期回调的 Service(onCreate()、onStart() 或 onDestroy())
- 托管正执行其 onReceive() 方法的 BroadcastReceiver
没有任何前台组件、但仍会影响用户在屏幕上所见内容的进程。 如果一个进程满足以下任一条件,即视为可见进程:
- 托管不在前台、但仍对用户可见的 Activity(已调用其 onPause() 方法)。例如,如果前台 Activity 启动了一个对话框,允许在其后显示上一 Activity,则有可能会发生这种情况。
- 托管绑定到可见(或前台)Activity 的 Service。
可见进程被视为是极其重要的进程,除非为了维持所有前台进程同时运行而必须终止,否则系统不会终止这些进程。
包含目前对用户不可见的 Activity 的进程(已调用 Activity 的 onStop() 方法)。这些进程对用户体验没有直接影响,系统可能随时终止它们,以回收内存供前台进程、可见进程或服务进程使用。 通常会有很多后台进程在运行,因此它们会保存在 LRU (最近最少使用)列表中,以确保包含用户最近查看的 Activity 的进程最后一个被终止。如果某个 Activity 正确实现了生命周期方法,并保存了其当前状态,则终止其进程不会对用户体验产生明显影响,因为当用户导航回该 Activity 时,Activity 会恢复其所有可见状态。
不含任何活动应用组件的进程。保留这种进程的的唯一目的是用作缓存,以缩短下次在其中运行组件所需的启动时间。 为使总体系统资源在进程缓存和底层内核缓存之间保持平衡,系统往往会终止这些进程。
首先空进程是最先被回收的,其次便是后台进程,依次往上,前台进程是最后才会被结束。
有很多种方法可以实现Android的进程保活,比如通过 1像素且透明Activity提升App进程优先级、通过设置前台Service提升App进程优先级、Java层的双进程拉活、JobScheduler实现、NDK双进程守护、使用账户同步拉活、workmanager实现。
下面这幅图,说明的是:
- 红色部分是容易被回收的进程,属于android进程
- 绿色部分是较难被回收的进程,属于android进程
- 其他部分则不是android进程,也不会被系统回收,一般是ROM自带的app和服务才能拥有
本篇文章介绍的是进程第一种方式:
- 1像素且透明Activity提升App进程优先级
首先创建KeepLiveActivity.java继承自AppCompatActivity,这就是透明的Activity:↓
public class KeepLiveActivity extends AppCompatActivity {
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Log.d("KeepLiveActivity","开启KeepLiveActivity");
//左上角显示
Window window = getWindow();
window.setGravity(Gravity.START|Gravity.TOP);
//设置为1像素大小
WindowManager.LayoutParams params = window.getAttributes();
params.x = 0;
params.y = 0;
params.width = 1;
params.height = 1;
window.setAttributes(params);
KeepLiveManager.getInstance().setKeepLiveActivity(this);
}
@Override
protected void onDestroy() {
super.onDestroy();
Log.d("KeepLiveActivity","关闭KeepLiveActivity");
}
}
样式文件中添加:↓
<style name="KeepLiveTheme" parent="AppTheme">
<item name="android:windowBackground">@null</item>
<item name="android:windowIsTranslucent">true</item>
</style>
清单文件中注册KeepLiveActivity:↓
<activity android:name=".KeepLiveActivity"
android:excludeFromRecents="true"
android:exported="false"
android:finishOnTaskLaunch="false"
android:launchMode="singleInstance"
android:theme="@style/KeepLiveTheme"/>
创建KeepLiveManager独生子模式(单例):↓
public class KeepLiveManager {
private static final KeepLiveManager ourInstance = new KeepLiveManager();
public static KeepLiveManager getInstance() {
return ourInstance;
}
private KeepLiveManager() {
}
//弱引用,防止内存泄漏
private WeakReference<KeepLiveActivity> reference;
private KeepLiveReceiver receiver;
public void setKeepLiveActivity(KeepLiveActivity activity) {
reference = new WeakReference<>(activity);
}
//开启透明Activity
public void startKeepLiveActivity(Context context) {
Intent intent = new Intent(context, KeepLiveActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(intent);
}
//关闭透明Activity
public void finishKeepLiveActivity() {
if (reference != null && reference.get() != null) {
reference.get().finish();
}
}
//注册广播
public void registerKeepLiveReceiver(Context context) {
receiver = new KeepLiveReceiver();
IntentFilter filter = new IntentFilter();
filter.addAction(Intent.ACTION_SCREEN_OFF);
filter.addAction(Intent.ACTION_SCREEN_ON);
context.registerReceiver(receiver, filter);
}
//反注册
public void unregisterKeepLiveReceiver(Context context){
if(receiver != null){
context.unregisterReceiver(receiver);
}
}
}
创建KeepLiveReceiver继承自BroadcastReceiver(广播接收者):↓
/*
* 广播接收者监听屏幕开启和熄灭
* */
public class KeepLiveReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
if (Intent.ACTION_SCREEN_OFF.equals(intent.getAction())) {
//屏幕关闭,开启透明Activity
KeepLiveManager.getInstance().startKeepLiveActivity(context);
} else if (Intent.ACTION_SCREEN_ON.equals(intent.getAction())) {
//屏幕开启,关闭透明Activity
KeepLiveManager.getInstance().finishKeepLiveActivity();
}
}
}
最后在MainActivity调用就行:↓
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//1像素且透明Activity提升App进程优先级
KeepLiveManager.getInstance().registerKeepLiveReceiver(this);
}
@Override
protected void onDestroy() {
super.onDestroy();
//反注册防止内存泄漏
KeepLiveManager.getInstance().unregisterKeepLiveReceiver(this);
}
}