Iam开发了一个android应用程序,其中iam使用了Camera功能。
有什么方法可以在Android中获取“捕获的图像”的创建日期吗?

谢谢你的帮助。

最佳答案

通过Exif界面,如果相机将其写入。看看here

ExifInterface exif = new ExifInterface(pathToTheImage);
String datetime =  exif.getAttribute(ExifInterface.TAG_DATETIME);

10-08 17:08