android 如何处理相机意图
我正在 Android 中研究一些相机的东西,我得到了一些教程。
根据我的需要,我使用以下代码:
Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(cameraIntent, CAMERA_PIC_REQUEST);
但是当我捕获图像时使用此代码,此 Intent 会自动将图像存储在我的 SD 卡中。但我不希望它将它存储到我的 SD 卡中,因为我将该图像存储到 SD 卡中的其他位置/文件夹中。那么在这里我是否可以阻止这种将图像自动存储到 SDCard 的意图。
请各位朋友帮忙
I was working on some camera stuff in android and i get some tutorials.
For my needs i get the following code to be used:
Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(cameraIntent, CAMERA_PIC_REQUEST);
But using this when i capture the image, this Intent automatically stores the Image in my SD CARD. but i dont want it to store it to my SD CARD because i am storing that image to some other place/folder in SD Card. So is it possible in here that i can stop this intent to store the image into SDCard automatically.
Please Friends Help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
用这个。它将把图像保存到 SDCard 中的任何我的文件夹中。
use this . It will save the image to any myfolder in your SDCard.