I'm trying to use these sets of java code to turn off a Droid 2 Global soft keys and turn on the camera LED. Everything I've tried has failed to work, but when I run the same code on other Android devices (2.1 and above and non-Motorola) it works without a hitch. Any thoughts? I'm assuming the soft key problem may have something to do with the light sensor on the phone overriding the code.
// Turn off the menu buttons (Pre-Froyo)
final java.lang.reflect.Field buttonBrightness = winParams.getClass().getField("buttonBrightness");
buttonBrightness.set(winParams, 0);
or
// (Froyo and beyond)
winParams.buttonBrightness = WindowManager.LayoutParams.BRIGHTNESS_OVERRIDE_OFF;
// Turn on Camera LED
Camera.Parameters cameraParameters = camera.getParameters();
String flashMode;
if (onOff) // we are being ask to turn it on
{
flashMode = Camera.Parameters.FLASH_MODE_TORCH;
}
else // we are being asked to turn it off
{
flashMode = Camera.Parameters.FLASH_MODE_OFF;
}
cameraParameters.setFlashMode(flashMode);
camera.setParameters(cameraParameters);