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 sHol...
If you are a beginner , then this blog will help you to dive into the basics.