无法将摩托罗拉平板电脑相机拍摄的图片存储在 SD 卡中
我正在尝试从我的 Android 应用程序打开相机并捕获图像, 但它不存储在SD卡中。 如果我从内置相机捕获图像,那么它将图像存储在 SD 卡上。 使用以下代码:(尝试打开相机)。
Intent intent = new Intent(
android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(intent, 1);
在清单许可中:
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
我的代码中是否缺少某些内容?
提前致谢。
i am trying to open camera from my android application and capture image,
but it doesn't stored in sdcard.
If i capture image from in-build camera then it stored the image on sdcard.
using following code : (try to open camera).
Intent intent = new Intent(
android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(intent, 1);
in manifest permission :
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
is there something missing in my code?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这适用于我的情况..
和 getImageUri()
有关更多信息,请参阅 如何使用原生 Android 相机捕获图像并存储它
This works in my case..
And getImageUri()
For more info look at How to capture an image and store it with the native Android Camera