android flash alert2,Camera.Parameters.FLASH_MODE_TORCH replacement for Android 2.1

I'm finding that torch mode is generally working fine on 2.1 but I had the same problem with the Samsung Epic and found a hack around it.

Looking at the params returned by Camera.getParameters() when run on the Samsung Epic, I noticed that the flash-modes it claims to support are: flash-mode-values=off,on,auto;

torch-mode is not listed, implying it's not supported.

However, I found that this model would still accept that mode and WOULD turn the LED on! The bad news was that when later setting the flash-mode back to auto or off left the LED still lit! It will not turn off until you call Camera.release().

I guess that's why Samsung dont include it in the list of supported!?!

So...the method I use to toggle torch in a CameraHelper class is...

/***

* Attempts to set camera flash torch/flashlight mode on/off

* @param isOn true = on, false = off

* @return boolean whether or not we were able to set it

*/

public boolean setFlashlight(boolean isOn)

{

if (mCamera == null)

{

return false;

}

Camera.Parameters params = mCamera.getParameters();

String value;

if (isOn) // we are being ask to turn it on

{

value = Camera.Parameters.FLASH_MODE_TORCH;

}

else // we are being asked to turn it off

{

value = Camera.Parameters.FLASH_MODE_AUTO;

}

try{

params.setFlashMode(value);

mCamera.setParameters(params);

String nowMode = mCamera.getParameters().getFlashMode();

if (isOn && nowMode.equals(Camera.Parameters.FLASH_MODE_TORCH))

{

return true;

}

if (! isOn && nowMode.equals(Camera.Parameters.FLASH_MODE_AUTO))

{

return true;

}

return false;

}

catch (Exception ex)

{

MyLog.e(mLOG_TAG, this.getClass().getSimpleName() + " error setting flash mode to: "+ value + " " + ex.toString());

}

}

The activities that use this call it as follows...

private void toggleFlashLight()

{

mIsFlashlightOn = ! mIsFlashlightOn;

/**

* hack to fix an issue where the Samsung Galaxy will turn torch on,

* even though it says it doesnt support torch mode,

* but then will NOT turn it off via this param.

*/

if (! mIsFlashlightOn && Build.MANUFACTURER.equalsIgnoreCase("Samsung"))

{

this.releaseCameraResources();

this.initCamera();

}

else

{

boolean result = mCamHelper.setFlashlight(mIsFlashlightOn);

if (! result)

{

alertFlashlightNotSupported();

}

}

}

The magic that makes this work in releaseCameraResources() is that it calls Camera.release()....and then I have to reinitialize all my camera stuff for Samsung devices.

Not pretty but seems to be working for plenty of users.

Note that I do have a report of torch mode not working at all with this code on Nexus one but have been able to dig into it. It definitely works on HTC EVO and Samsung Epic.

Hope this helps.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值