I tried to make an app than can switch my camera flash on and off. The code I have atm looks like this:
Camera flash; Camera.Parameters params; flash = Came
You might have forgotten to call release in onDestroy
onDestroy
For example:
@Override protected void onDestroy() { if (mCamera != null) { mCamera.release(); } super.onDestroy(); }