Camera and LED together

248 Views Asked by At

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.

2

There are 2 best solutions below

0
On

Check this code.. I haven't tried though..

code

0
On

what if you comment out //mCamera.startPreview();? Can your flashlight keep working? Here is the code I implemented to make flashlight keep working on my device. You can verify whether your flashlight can normally work on your device.

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

public class MainActivity extends Activity {
    private Button mSwitchButton = null;
    private Camera mCamera;
    private Camera.Parameters mParameters;
    private boolean mbTorchEnabled = false;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        mSwitchButton = new Button(this);
        mSwitchButton.setText("switch");
        mSwitchButton.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                mParameters = mCamera.getParameters();

                List flashModes = mParameters.getSupportedFlashModes ();

                if(flashModes != null && flashModes.contains(Camera.Parameters.FLASH_MODE_TORCH)){
                    if(mbTorchEnabled){
                        //Set the flash parameter to off
                        mParameters.setFlashMode(Camera.Parameters.FLASH_MODE_OFF);
                    }
                    else{
                        //Set the flash parameter to use the torch
                        mParameters.setFlashMode(Camera.Parameters.FLASH_MODE_TORCH);
                    }

                    //Commit the camera parameters
                    mCamera.setParameters(mParameters);

                    mbTorchEnabled = !mbTorchEnabled;
                }
            }
        });

        setContentView(mSwitchButton);
    }

    @Override
    protected void onResume() {
        // TODO Auto-generated method stub
        super.onResume();
        mCamera = Camera.open();
    }

    @Override
    protected void onPause() {
        // TODO Auto-generated method stub
        super.onPause();
        mCamera.release();
    }
}