android 如何将捕获的图像保存到手机图库中
我有两项活动。在一项活动中,我有一个 ImageView 和一个相机按钮。 当我按下相机按钮时,它会转到其他活动,其中有两个按钮“捕获”,另一个是“选择”按钮。当我按下捕获时,它会捕获图像。但问题是如何将捕获的图像保存到图库中。按下“选择”按钮后,捕获的图像应显示在第一个活动的 ImageView
上。 我该怎么办呢。
I have two activities. In one activity, I have an ImageView
and an camera button.
When I press camera button it goes to other activity where two buttons are there Capture and another is Select button. When I press capture it captures an image. But question is how to save this capture image to gallery. And after pressing the Select button the captured image should display on 1st activity's ImageView
.
How can I do that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请参阅 http://blog.kupriyanov.com /2010/02/solved-android-save-image-to-media.html 保存到图库,并参见 以编程方式从 Android 的内置图库应用中获取/选取图像以显示图库图像。
See http://blog.kupriyanov.com/2010/02/solved-android-save-image-to-media.html to save to gallery, and see Get/pick an image from Android's built-in Gallery app programmatically for displaying the gallery image.
我就是这样做的。图像以分钟+秒+.jpg的形式保存在SDCard上:
This is the way I did it. The image is saved by minutes+seconds+.jpg on the SDCard:
试试这个..
您的图像将保存在这个位置“sdcard/CameraImages/example.jpg”
try this..
your image will be save at this location "sdcard/CameraImages/example.jpg"