I am using the takePicture() method from the Camera class. It takes the picture , but it makes no sound! My client wants the default click sound that Android makes.
I have seen other threads and it seems that the problem is in disabling the sound, not the opposite! Why is it that my app is not making the click sound??
I also had this problem. I solved it by using following code:
The following is used to call takePicture:
Now shutteerCallBack:
Now Do whatever after taking picture from camera:
This will play sound on clicking capture button.
Thank you 🙂