Skip to main content

Posts

Showing posts with the label turn off camera shutter sound programatically

Turn off camera shutter sound programatically in android

Disable shutter sound while capturing image in android/turn off camera sound programatically/Disable camera sound/mute shutter sound of camera/stop camera  click sound This can be achieved by mute audio while capturing image. Then enable audio after taking image package com.example.picture; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import android.app.Service; import android.content.Context; import android.content.Intent; import android.hardware.Camera; import android.hardware.Camera.Parameters; import android.media.AudioManager; import android.os.IBinder; import android.util.Log; import android.view.SurfaceHolder; import android.view.SurfaceView; public class CameraService extends Service {        AudioManager mgr ;       //Camera variables       //a surface holder       private SurfaceHolder sHolder ;        //a variable to control the camera       private Camera mCamera ;       //the camera parame