OK, I have found the part that grabs the EXIF data I think. I'm not sure though. I see where the time format seem wierd to me as it's set to kk:mm:ss
I don't know what will happen, but I'm going to change it to hh:mm:ss.
Code:
[SIZE=2]
[/SIZE][LEFT][B][SIZE=2][COLOR=#7f0055][SIZE=2][COLOR=#7f0055]long[/B][/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] dateTaken = System.currentTimeMillis();
[/SIZE][B][SIZE=2][COLOR=#7f0055][SIZE=2][COLOR=#7f0055]if[/B][/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] (dateTaken != 0) {
String datetime = DateFormat.format([/SIZE][SIZE=2][COLOR=#2a00ff][SIZE=2][COLOR=#2a00ff]"yyyy:MM:dd kk:mm:ss"[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2], dateTaken).toString();
mParameters.set([/SIZE][SIZE=2][COLOR=#2a00ff][SIZE=2][COLOR=#2a00ff]"exif-datetime"[/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2],datetime);
}
mCameraDevice.setParameters(mParameters);
incrementkeypress();
Size pictureSize = mParameters.getPictureSize();
mImageWidth = pictureSize.width;
mImageHeight = pictureSize.height;
mCameraDevice.takePicture(mShutterCallback, mRawPictureCallback,
mPostViewPictureCallback, [/SIZE][B][SIZE=2][COLOR=#7f0055][SIZE=2][COLOR=#7f0055]new[/B][/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2] JpegPictureCallback(loc));
mPreviewing = [/SIZE][B][SIZE=2][COLOR=#7f0055][SIZE=2][COLOR=#7f0055]false[/B][/COLOR][/SIZE][/COLOR][/SIZE][SIZE=2];[/LEFT]
}
[/SIZE]
Chime in if you know what I am seeing here.