Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有拍照的意图并且不会将它们自动保存到画廊?我目前正在使用 android.provider.MediaStore.ACTION_IMAGE_CAPTURE.
android.provider.MediaStore.ACTION_IMAGE_CAPTURE
您可以使用以下额外内容设置目标文件 uri:
intent.putExtra(MediaStore.EXTRA_OUTPUT,<Uri>);
该文件必须是可写的。完成文件后,只需将其删除,它就不会出现在图库中
如果您想将文件保留在 sd 上,而不在图库中显示,您可以简单地更改它的扩展名,“file.tmp”将永远不会显示在图库中。