Take photo without intent in Android/Capture image without using intent in android/ Camera using preview in android/Camera preview example/Take photo using surface view in android package com.sample; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import android.app.Activity; import android.hardware.Camera; import android.hardware.Camera.PictureCallback; import android.hardware.Camera.ShutterCallback; import android.os.Bundle; import android.util.Log; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; import android.widget.FrameLayout; public class CameraExampleActivity extends Activity { private static final String TAG = "CameraDemo" ; Camera camera ; Preview preview ; ...
If you are a beginner , then this blog will help you to dive into the basics.