Android: take camera picture intent remove confirmation dialog

前端 未结 2 1575
迷失自我
迷失自我 2021-01-19 04:49

it\'s possible to disable/remove this photo confirmation dialog:

I need somehow skip this dialog but I still want use an Intent. I found this a

2条回答
  •  长发绾君心
    2021-01-19 05:13

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

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

提交回复
热议问题