I have a simple application with a button
to turn on/off camera flash
:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button button = (Button)findViewById(R.id.btnFlash);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
if(!isLight)
{
switchON();
}
else
{
switchOFF();
}
}
});
}
If the flash was off, it will turn on and else, turn off. Yes, it works well.
The problem is:
- Firstly, I pressed the button
to turn on, after that, I rotate my device and then pressing again to turn off -> Application crash.
Fatal Exception: main - Runtime Exception: Fail to connect to camera service
These are 2 functions to turn on/off
public void switchON()
{
camera = Camera.open();
Parameters p = camera.getParameters();
p.setFlashMode(Parameters.FLASH_MODE_TORCH);
camera.setParameters(p);
camera.startPreview();
isLight = true;
}
public void switchOFF()
{
Parameters p = camera.getParameters();
p.setFlashMode(Parameters.FLASH_MODE_OFF);
camera.setParameters(p);
camera.stopPreview();
camera.release();
isLight = false;
}