I'm dimming the screen, with the help of the proximity sensor. It dims, but it also makes the app pause and wont allow it to wake up without pressing the power button. I have a wake lock but that doesn't seem to help. What do I need to do to stop it from pausing?
pm = (PowerManager) getSystemService(Context.POWER_SERVICE);
wl = pm.newWakeLock(PowerManager.FULL_WAKE_LOCK | PowerManager.ACQUIRE_CAUSES_WAKEUP | PowerManager.ON_AFTER_RELEASE, "MyWakeLock");
-
public void onSensorChanged(SensorEvent event) {
if(event.sensor.getType() == Sensor.TYPE_PROXIMITY) {
Log.d("", "proximity " + String.valueOf(event.values[0]));
WindowManager.LayoutParams WMLP = getWindow().getAttributes();
if(event.values[0] == mProximity.getMaximumRange()) {
//Screen on
WMLP.screenBrightness = -1.0F;
} else {
//Screen off
WMLP.screenBrightness = 0.0F;
}
getWindow().setAttributes(WMLP);
}
}
What am I missing? Thanks.