如何让应用程序在后台保持清醒

How to keep application awake in background

我编写了一个应用程序,它连接到蓝牙设备并用于汽车(在后台)和导航(或其他东西)在前台。

但是在 android 7+(也可能是 6)上,应用程序会在一段时间后进入休眠状态。当我试图从相机拍照时 "sleep mode" 立即出现,我的应用程序现在正在休眠(没有蓝牙连接,没有通知)- 只是死应用程序。

我必须转到最近使用的应用程序 -> 点击我的应用程序,然后 "wake up"。蓝牙现在再次连接到设备。

但我仍然无法检查该应用程序是否正在休眠。那么,如何让应用程序在后台也保持唤醒?

我阅读了一些有关 WakeLock 的内容,但它似乎无法正常工作,因为应用程序仍在休眠。但也许我用错了。

PowerManager pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
    wk = pm.newWakeLock(PowerManager.FULL_WAKE_LOCK, "MyWakeLock");
    wk.acquire();

和 onDestroy

wk.release();

谢谢

你为什么不使用服务? WakeLock 基本上保留屏幕,这不是一种有效的机制

https://developer.android.com/training/scheduling/wakelock.html

要使唤醒锁起作用,您应该在开头将此行添加到您的 androidmanifest 文件中。但正如 Ajay 所说,您应该使用一项服务,以便该服务在后台运行并完成工作,但如果您想将屏幕保持在屏幕上,那是另一回事,我认为这里不是这种情况。

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

从 Android API 23 起,Google 引入了 Doze modeApp Standby 以节省电池电量。当设备进入休眠模式或应用程序进入 App Standby 时,应用程序完成的所有任务都会延迟。我们遇到了一个问题,因为同样的原因,它没有触发警报。如果您阅读文档,您会发现使用唤醒锁也无济于事。

Doze restrictions The following restrictions apply to your apps while in Doze:

Network access is suspended.

The system ignores wake locks.

Standard AlarmManager alarms (including setExact() and setWindow()) are deferred to the next maintenance window. If you need to set alarms that fire while in Doze, use setAndAllowWhileIdle() or setExactAndAllowWhileIdle(). Alarms set with setAlarmClock() continue to fire normally — the system exits Doze shortly before those alarms fire.

The system does not perform Wi-Fi scans.

The system does not allow sync adapters to run. The system does not allow JobScheduler to run

所以如果你想绕过所有这些,你的应用程序必须在前台有一个进程。再次来自同一文档 -

The app has a process currently in the foreground (either as an activity or foreground service, or in use by another activity or foreground service).

在您的情况下 运行 服务并将其优先级提高到前台。

xml布局类型下的布局文件:

android:keepScreenOn="true">