I have used intent to launch camera
Intent cameraIntent = new Intent(
android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
getParent().startActivityForResult(cameraIntent, CAMERA_PIC_REQUEST);
and onActivityResult() used
Bitmap thumbnail = (Bitmap) data.getExtras().get("data");
Save_to_SD (thumbnail, filename);
But get thumbnail was small size, how do I get the full bitmap?