forked from organicmaps/organicmaps-tmp
[android] Fixed screen dimming when pressing power button and pause the app
This commit is contained in:
parent
623c59fd73
commit
88c9da13da
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ class DownloadChunkTask extends AsyncTask<Void, byte [], Void>
|
|||
{
|
||||
PowerManager pm = (PowerManager)MWMActivity.getCurrentContext().getSystemService(
|
||||
android.content.Context.POWER_SERVICE);
|
||||
m_wakeLock = pm.newWakeLock(PowerManager.SCREEN_DIM_WAKE_LOCK | PowerManager.ON_AFTER_RELEASE, TAG);
|
||||
m_wakeLock = pm.newWakeLock(PowerManager.SCREEN_DIM_WAKE_LOCK, TAG);
|
||||
m_wakeLock.acquire();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue