Android: take camera picture intent remove confirmation dialog

Viewed 3697
2 Answers

Use "android.intent.extra.quickCapture" in Intent.

Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
intent.putExtra("android.intent.extra.quickCapture",true);
Related