Would any one help me with this? I want to pick a photo from the device
with:

                    Intent intent = new Intent(Intent.ACTION_GET_CONTENT,
null);
                    intent.setType("image/*");
                    //intent.putExtra("crop", "true");
                    intent.putExtra("return-data", true);

                    startActivityForResult(Intent.createChooser(intent,
"Picking photo"), PR.action.ACTION_TYPE_PICK_PHOTO);

But I want to get the GPS information, file name etc. too. How could I do
it? Thanks!
P.S. How can I map the GPS coordinate into human readable address?

Best regards,
-- 
All those moments will be lost in time, just like tears in rain.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to