I tried turn on Camera and LED together on my Android device. Using this sample: http://developer.android.com/guide/topics/media/camera.html
This my code:
mCamera = getCameraInstance();
// Create our Preview view and set it as the content of our activity.
mPreview = new CameraPreview(this, mCamera);
FrameLayout preview = (FrameLayout) findViewById(R.id.camera_preview);
preview.addView(mPreview);
params = mCamera.getParameters();
params.setFlashMode(Camera.Parameters.FLASH_MODE_TORCH);
mCamera.setParameters(params);
mCamera.startPreview();
But after turning on the LED, It works for 1 second and then switches off.
Check this code.. I haven't tried though..
code