Java tutorial
//package com.java2s; //License from project: Open Source License import android.hardware.Camera; public class Main { public static void releaseCamera(Camera camera) { if (camera != null) { camera.release(); // release the camera for other applications camera = null; } } }