I'm trying to turn on the camera flashlight on the LG Revolution within my program. I use the torch mode method which works on most phones but not on LG phone. Does anyone know how to get it to work on LG's or specifically the Revolution?

Here's my manifest:

<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
<uses-permission android:name="android.permission.FLASHLIGHT"/>

Here's my current code:

public Camera camera = Camera.open();
    public Camera.Parameters Flash = camera.getParameters();

With my on create:

            Flash.setFlashMode("torch");
            Parameters p = camera.getParameters();
            camera.setParameters(Flash);
            camera.startPreview();

I've seen people use an auto focus but i don't know if that would work.

link|improve this question
So does no one know how to do this yet? – MinceMan Aug 13 '11 at 17:25
I've tried every method I could find, so far no luck...Does LG publish documentation on their specific Android implementation? – Nick Siderakis Jan 3 at 20:50
Not that I've seen and they've never responded to the ticket I set up through their website – MinceMan Jan 9 at 21:53
did you find the solution? – Pedro Rainho Mar 1 at 23:23
No I have not Pedro. And I don't think I can as I have no lg hardware. Hopefully someday someone will post it on this thread... – MinceMan Mar 4 at 5:27
feedback

2 Answers

up vote 0 down vote accepted

Test this :

if(camera == null){

camera = Camera.open();
parameters = camera.getParameters();

List<String> flashModes = parameters.getSupportedFlashModes();

    if(flashModes != null && flashModes.contains(Parameters.FLASH_MODE_TORCH)){

        //appareil supportant le mode torch
        parameters.setFlashMode(Parameters.FLASH_MODE_TORCH);
        camera.setParameters(parameters);
    } else if (flashModes != null && flashModes.contains(Parameters.FLASH_MODE_ON)){

        //spécial samsung
        parameters.setFlashMode(Parameters.FLASH_MODE_ON);
        camera.setParameters(parameters);
        camera.startPreview();
        camera.autoFocus(new AutoFocusCallback() {
            public void onAutoFocus(boolean success, Camera camera) { }
        });
    } else {
        parameters.setFlashMode(Parameters.FLASH_MODE_OFF);
        camera.setParameters(parameters);
    }  

        parameters.setFlashMode( Parameters.FLASH_MODE_OFF );
        camera.setParameters(parameters);
        camera.release();
        camera = null;

    } catch (RuntimeException e) {}

}//if
link|improve this answer
I'll test it out sometime this next week. – MinceMan Dec 23 '11 at 3:47
This seemed to not work for me. I am adding the autofocus and I'll see if that works when I get a chance to us it on an LG phone. Though I had to do camera.autoFocus(new Camera.AutoFocusCallback() { public void onAutoFocus(boolean success, Camera camera) { } – MinceMan Dec 30 '11 at 3:04
So with the autoFocus the Spectrum™ by LG worked. I'm not sure it needed it though or if it's just a different phone, I'll find out and update. – MinceMan Mar 6 at 2:07
feedback

It seems like the developer of the Tiny Flashlight + LED app on the Android Market figured out how to make the flashlight work on LG Revolution.

Maybe you can contact him and ask? You can also check the permissions he is using in his app to try to make your app work!

Good luck!

link|improve this answer
No response from Tiny Flasher :( Still don't know this one yet. – MinceMan Dec 3 '11 at 23:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.