Skip to content
Snippets Groups Projects
Commit 1f34acd9 authored by Rayan Osseiran's avatar Rayan Osseiran
Browse files

wakelock: add proximity wakelock

Turns off the screen when the user places the phone near their ear

Change-Id: I8e741f1bc739fc903643c8086f16d7d9959ccdc7
parent b985b19a
No related branches found
No related tags found
No related merge requests found
......@@ -307,7 +307,7 @@ public class CallFragment extends BaseSupportFragment<CallPresenter> implements
super.onViewCreated(view, savedInstanceState);
mCurrentOrientation = getResources().getConfiguration().orientation;
PowerManager powerManager = (PowerManager) requireContext().getSystemService(Context.POWER_SERVICE);
mScreenWakeLock = powerManager.newWakeLock(PowerManager.SCREEN_BRIGHT_WAKE_LOCK | PowerManager.ACQUIRE_CAUSES_WAKEUP | PowerManager.ON_AFTER_RELEASE, "ring:callLock");
mScreenWakeLock = powerManager.newWakeLock(PowerManager.PROXIMITY_SCREEN_OFF_WAKE_LOCK | PowerManager.ACQUIRE_CAUSES_WAKEUP | PowerManager.ON_AFTER_RELEASE, "ring:callLock");
mScreenWakeLock.setReferenceCounted(false);
if (mScreenWakeLock != null && !mScreenWakeLock.isHeld()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment