管理后台运行流程

时间:2019-06-25 09:53:23

标签: android

我正在尝试在移动屏幕关闭时冻结后台运行的进程,并且当屏幕启动时,进程应在较低的android版本中自动重新启动。但是我找不到任何代码来实现此功能。因此,如果有人知道这一点,请提供帮助。

2 个答案:

答案 0 :(得分:1)

尝试一下:)

IntentFilter intentFilter = new IntentFilter(Intent.ACTION_SCREEN_ON);
intentFilter.addAction(Intent.ACTION_SCREEN_OFF);
registerReceiver(new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
        if (intent.getAction().equals(Intent.ACTION_SCREEN_OFF)) {
            //Stop your service
        } else if (intent.getAction().equals(Intent.ACTION_SCREEN_ON)) {
            // Start your service
        }
    }
}, intentFilter);

答案 1 :(得分:0)

您可以使用onStop()在活动生命周期的stopService(intent);方法中停止后台服务,然后通过使用onResume()在活动生命周期的startService(intent);方法中再次启动